我不确定其他人怎么说,但我在您的页面中看到了以下代码:
$('#main_menu a').bind('click',function(event){
if(!$(this).parent('li').hasClass('lang') && !$(this).parent('li').hasClass('langlast')) {
$(document).find('title').text($(this).text() + ' | santosidaniel');
var $anchor = $(this);
$('html, body').stop().animate({
scrollTop: $($anchor.attr('href')).offset().top
}, 1500,'easeInOutExpo');
event.preventDefault();
}
});
这似乎是导致滚动的有效代码,至少在 Chrome 中是这样。其他链接不起作用,因为它们没有绑定功能?
如果我也添加了#words_menu a
,#thumbs_menu a
那么链接将起作用。
显然这并不能解释为什么它在其他浏览器中确实有效,但这似乎解决了问题,至少在 Chrome 中是这样。