0

我正在根据以前的人重建一个网站。这里是源码,点击时使用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>

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

4

1 回答 1

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;
      }
    }
  });
});
于 2013-11-14T09:23:31.093 回答