0

使用我的 javascript 代码,我可以滚动到一个 div,但我需要 javascript 让我比那个 div 高 20 像素。我的代码是这个

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

有人可以让它10px高于div吗?非常感谢你

如果您想了解有关http://www.sventasticable.nl的更具体的问题,这是我的网页

我的英语不是很好。

4

1 回答 1

1

删除 10top

$('html,body').animate({
      scrollTop: target.offset().top - 10
    }, 1000);
于 2013-11-09T13:38:45.503 回答