我有CSS Tricks的以下工作脚本,由于固定的标题菜单,我已将其调整为具有顶部偏移量:
$(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 - 180
}, 1000);
return false;
}
}
});
});
HTML:
Link in the header menu
<a href="/subpage#about">About</a>
Link on the subpage
<a name="about"></a>
在同一页面上,带有顶部偏移的滚动工作正常,但是当链接到另一页面上的锚链接时,顶部偏移将被忽略。我该如何解决这个问题?