jQuery动画来锚定不在IE中工作的脚本

时间:2016-06-14 06:19:19

标签: jquery internet-explorer

$('a[href="#two"]').click(function(e) {
        e.preventDefault();
        var targetOffset = $('div[id="two"]').offset().top;
        $('body').animate(
            {scrollTop: targetOffset},
            1000
            );
    });

我在这里有一个代码,可以平滑滚动到div锚点。它在IE(11)中不起作用。适用于Chrome / Firefox。有人可以帮我解决:D

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;
      }
    }
  });
});