用动画跳转到id

时间:2013-11-14 09:18:39

标签: javascript jquery html

我正在重建一个基于以前家伙的网站。这是源代码,点击时使用id跳转。

<a href="#faq01">Cancel or Modify an Order</a>

点击并跳转到

<a name="faq01" id="faq01"></a><strong>Cancel or Modify an Order</strong></p>
<p> Please kindly contact our customer service to cancel or modify your order. However, once your order has been processed and ...</p>

是否有一种简单的方法可以使这种顺利跳跃?该类别非常大,但格式相同。

1 个答案:

答案 0 :(得分:0)

使用此功能,希望它有所帮助

$(function() {
  $('a[href*=#]:not([href=#])').click(function() {
    if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
      var target = $(this.hash);
      target = target.length ? target : $('[name=' + this.hash.slice(1) +']');
      if (target.length) {
        $('html,body').animate({
          scrollTop: target.offset().top
        }, 1000);
        return false;
      }
    }
  });
});