以下代码用于在菜单链接和内容行容器之间应用平滑滚动。除了Safari之外,这似乎在所有浏览器上都能正常工作。
我理解我需要在偏移行中定义'html'和'body',但是,我不确定我是否已正确完成此操作。希望对此有所帮助!感谢。
$(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;
}
}
});
});