41

当我单击一个按钮时,我希望能够向下跳转或滚动到页面上的特定 div 或目标。

$('#clickMe').click(function() {
    //jump to certain position or div or #target on the page
});

我怎样才能做到这一点?

4

2 回答 2

46

我会将链接设置为看起来像一个按钮,因为这样就没有 js 后备。


所以这就是你如何使用 jquery 为跳转设置动画。No-js fallback 是没有动画的正常跳转。

原始示例:

jsfiddle

$(document).ready(function() {
  $(".jumper").on("click", function( e ) {

    e.preventDefault();

    $("body, html").animate({ 
      scrollTop: $( $(this).attr('href') ).offset().top 
    }, 600);

  });
});
#long {
  height: 500px;
  background-color: blue;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<!-- Links that trigger the jumping -->
<a class="jumper" href="#pliip">Pliip</a>
<a class="jumper" href="#ploop">Ploop</a>
<div id="long">...</div>
<!-- Landing elements -->
<div id="pliip">pliip</div>
<div id="ploop">ploop</div>


链接的实际按钮样式的新示例,只是为了证明一点。

一切都基本相同,除了我将类更改.jumper.button并添加了 css 样式以使链接看起来像按钮。

Button styles example

于 2013-03-01T13:53:46.793 回答
33
$("html, body").scrollTop($(element).offset().top); // <-- Also integer can be used
于 2013-03-01T13:29:44.127 回答