我需要帮助,我正在建立一个单页面布局网页,我有一个滚动到脚本,但我想按下导航栏类中的按钮出现。我的意思是什么?
当我按下按钮时,它会滚动到该位置,但我想看到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;
}
}
});
});
答案 0 :(得分:0)
也许我不完全理解这个问题,但是如果你想要显示哈希(#top),你应该从代码中删除return false;
。