1. <style>
    2. .div{
    3. position: relative;
    4. }
    5. p{
    6. width: 100px;
    7. height: 100px;
    8. position: absolute;
    9. }
    10. #html{
    11. top: 500px;
    12. background-color: brown;
    13. }
    14. #css{
    15. top: 1500px;
    16. background-color: cadetblue;
    17. }
    18. #js{
    19. top: 2500px;
    20. background-color: cornflowerblue;
    21. }
    22. </style>
    23. </head>
    24. <body>
    25. <div class="a">
    26. <a href="#html">html</a>
    27. <a href="#css">css</a>
    28. <a href="#js">js</a>
    29. </div>
    30. <div class="div">
    31. <p id="html"></p>
    32. <p id="css"></p>
    33. <p id="js"></p>
    34. </div>
    35. <script>
    36. $(".a a").click(function(){
    37. var id = $(this).attr("href");
    38. var scrollTop = $(id).offset().top;
    39. $("html").animate({scrollTop:scrollTop},1000);
    40. console.log(scrollTop);
    41. })
    42. </script>