我找到了一个优雅的jquery用于平滑滚动并将其放在索引页面的底部。但是,在媒体< 600px宽,我使用菜单链接切换打开导航,每次点击页面向上滚动。有没有办法过滤掉这个链接,或者是什么导致滚动发生?可以在http://lma.la
的缩小宽度屏幕上查看此问题剧本:
$('a[href*=#]:not([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) {
$('html,body').not('a.menu-link').animate({ //THIS DOES NOT WORK
scrollTop: target.offset().top
}, 1500);
return false;
}
}
});