使用我的 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的更具体的问题,这是我的网页
我的英语不是很好。