当用户按下后退按钮时,我使用 onhashchange 事件自动滚动到 FAQ 页面中的锚链接。
它工作正常,除非按下前进按钮,滚动不起作用的情况。
我一直无法理解为什么会发生这种情况。有人知道为什么会这样吗?
演示页面:http ://static.nemesisdesign.net/hashchange-issue/index.html (要重现该问题,请尝试单击左栏中的链接,然后按几次后退按钮,然后按前进按钮)
这是执行滚动的代码部分:
// if browser supports onhashchange event
if ("onhashchange" in window){
$(window).bind('hashchange', function(e){
e.preventDefault();
var href = (location.hash != '') ? location.hash : '#container'
scrollToFaq(href);
return false;
});
}
scrollToFaq = function(href){
// scroll
$('html, body').animate(
// scroll to clicked item
{scrollTop: $(href).offset().top},
400, // duration in ms
function(){
if(href != '#container'){
location.hash = href.replace('#',''); // update hash
}
// show back button if necessary
if($(window).scrollTop() > 60){
// onclick back to top button
$('#back-top').fadeIn();
}
}
);
}
// when clicking on a faq menu item
$('#faqmenu a').click(function(e){
// prevent default behaviour
e.preventDefault();
// cache href attribute
scrollToFaq($(this).attr('href'));
});