在我的例子中是否可以避免具有某种css风格的项目" display:none;"使用平滑滚动时?
这是我正在使用的脚本:
jQuery(function($) {
$('a[href*=\\#]').click(function()
{
if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'')
|| location.hostname == this.hostname)
{
var target = jQuery(this.hash);
target = target.length ? target : jQuery('[name=' + this.hash.slice(1) +']');
if (target.length) {
jQuery('html,body').animate({
scrollTop: target.offset().top + -10
}, 1000);
return false;
}
}
});
});