zoukankan      html  css  js  c++  java
  • 页面内锚点定位及跳转方法总结

    点击锚点跳转到相应DIV的问题。

     第一种方法即最简单的方法是锚点用<a>标签,在href属性中写入DIV的id。如下:

    <!DOCTYPE  html>
    <html>
    <head>
    <style>
    div {
    height: 800px;
    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>

        这种方法的缺点是点击锚点之后,浏览器的URL会发生变化,如果刷新可能会出现问题。 

      第二种方式是在js事件中通过window.location.hash="divId"跳转,但地址也会发生变化,感觉跟第一种方法没区别,甚至更麻烦。

     

      第三种方法是用animate属性,当点击锚点后,页面滚动到相应的DIV。接着上面的代码,具体添加如下代码:

    1
    2
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.0.min.js"></script>
    <script type="text/javascript"><br>$(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>

      注意:运行上面的脚本的之前,先将为锚点增加相应的id,同时去掉href属性。   

             例如: <a href="javascript:;"  id="t3" onclick="pianyi('record_name','3')">公司档案</a>                 

                 function pianyi(id,num){
                      var numTmp = parseInt(num);
                      var pHeight = $("#"+id).offset().top - 90;
                      $("html,body").animate({scrollTop:pHeight }, 1000);
                  }

           $("html, body")可以替换为响应的div,如果不起作用,试着给该div增加overflow:scroll属性。 

         另外,脚本可以进一步优化,自己来试试

      这样做的好处是:URL地址不会变,同时点击锚点时会自动响应scroll事件,不需要重新绑定。

              缺点是:如果页面复杂的话,偏移值可能会发生变化需要算法辅助。

      第四种方法是用js的srollIntoView方法,直接用:

    1
    document.getElementById("divId").scrollIntoView();

      这种方法的好处,是URL不会变,同时能够响应相应的scroll事件,不需要算法什么的。

      推介大家用第四种,我依次试了前三种,都有各种问题(可能是页面较复杂的缘故吧,当然,技术不咋也是。。。)   

  • 相关阅读:
    POJ 3258 二分答案
    Prototype 模式示例代码 (C++)
    offsetof 和 container_of
    二进制整数中的“1”
    Binary Tree Traversal Algorithms (二叉树遍历算法)
    A* Pathfinding Algorithm
    Axis­ Aligned 
Rectangles (Google 面试题, 2016网易游戏校招笔试)
    [LeetCode] Burst Ballons
    C++ 继承语义下构造函数中的对象指针
    kill-9和kill-15的区别
  • 原文地址:https://www.cnblogs.com/mawenying/p/6737109.html
Copyright © 2011-2022 走看看