我需要帮助,我正在构建一个单页布局网页,并且我可以滚动到脚本,但我希望在按下导航栏类中的按钮时出现。我的意思是说?
当我按下按钮时,它会滚动到该位置,但我想看到 htttp://mysite.com/#top
这就是我所拥有的
$(function(){
$('a[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) {
var targetOffset = $target.offset().top;
$('html,body').animate({scrollTop: targetOffset - 100}, 800); /* Offest 100px because of the fixed nav manu */
return false;
}
}
});
});