通过给页面添加锚点快速跳转到描点位置。
侵删转自:CSDN,this_ITBoy
第一种方法:

<!DOCTYPE html>
<html>
<head>
<style>
div {
height: 800px;
width: 400px;
border: 2px solid black;
}
h2 {
position: fixed;
margin:50px 500px;
}
</style>
</head>
<body>
<h2>
<a href="#div1">to div1</a>
<a href="#div2">to div2</a>
<a href="#div3">to div3</a>
</h2>
<div id="div1">div1</div>
<div id="div2">div2</div>
<div id="div3">div3</div>
</body>
</html>

第二种方法:

<script type="text/javascript" src="http://code.jquery.com/jquery-1.8.0.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#div1Link").click(function() {
$("html, body").animate({
scrollTop: $("#div1").offset().top }, {duration: 500,easing: "swing"});
return false;
});
$("#div2Link").click(function() {
$("html, body").animate({
scrollTop: $("#div2").offset().top }, {duration: 500,easing: "swing"});
return false;
});
$("#div3Link").click(function() {
$("html, body").animate({
scrollTop: $("#div3").offset().top }, {duration: 500,easing: "swing"});
return false;
});
});
</script>

第三种方法:

<html>
    <head>
        <title>HTML5_ScrollInToView方法</title>
        <meta  charset="utf-8">
        <script type="text/javascript">
            window.onload = function(){
                /*
                    如果滚动页面也是DOM没有解决的一个问题。为了解决这个问题,浏览器实现了一下方法,
                以方便开发人员如何更好的控制页面的滚动。在各种专有方法中,HTML5选择了scrollIntoView()
                作为标准方法。
                    scrollIntoView()可以在所有的HTML元素上调用,通过滚动浏览器窗口或某个容器元素,
                调用元素就可以出现在视窗中。如果给该方法传入true作为参数,或者不传入任何参数,那么
                窗口滚动之后会让调动元素顶部和视窗顶部尽可能齐平。如果传入false作为参数,调用元素
                会尽可能全部出现在视口中(可能的话,调用元素的底部会与视口的顶部齐平。)不过顶部
                不一定齐平,例如:
                //让元素可见
                document.forms[0].scrollIntoView();
                当页面发生变化时,一般会用这个方法来吸引用户注意力。实际上,为某个元素设置焦点也
                会导致浏览器滚动显示获得焦点的元素。
                    支持该方法的浏览器有 IE、Firefox、Safari和Opera。
                */
                document.querySelector("#roll1").onclick = function(){
                    document.querySelector("#roll_top").scrollIntoView(false);
                }
                document.querySelector("#roll2").onclick = function(){
                    document.querySelector("#roll_top").scrollIntoView(true);
                }
            }
        </script>
        <style type="text/css">
            #myDiv{
                height:900px;
                background-color:gray;
            }
            #roll_top{
                height:900px;
                background-color:green;
                color:#FFF;
                font-size:50px;
                position:relative;
            }
            #bottom{
                position:absolute;
                display:block;
                left;0;bottom:0;
            }
        </style>
    </head>
    <body>
        <button id="roll1">scrollIntoView(false)</button>
        <button id="roll2">scrollIntoView(true)</button>
        <div id="myDiv"></div>
        <div id="roll_top">
            scrollIntoView(ture)元素上边框与视窗顶部齐平
            <span id="bottom">scrollIntoView(false)元素下边框与视窗底部齐平</span>
        </div>
    </body>
</html>

本站搜索描点跳转代码:

<form action="https://www.baidu.com/s?" target="_blank" id="tsf" method="GET" autocomplete="off">
     <input id='tsbox' type="text" x-webkit-speech="" onfocus="if (this.value == '百度搜 输入内容 回车搜') {this.value = '';}" onblur="if (this.value == '') {this.value = '百度搜 输入内容 回车搜';}" value="百度搜 输入内容 回车搜" name="q1" "="" />
</form>
<a href="#tsbox"><img src="http://cpuck.com/wxm/img/s.png" /></a>
最后修改:2024 年 10 月 07 日
如果觉得我的文章对你有用,请随意赞赏