使用https://css-tricks.com/snippets/jquery/smooth-scrolling/中的代码以及我这样的代码无法弄清楚它为什么不起作用。
脚本:
$('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').animate({
scrollTop: target.offset().top
}, 1000);
return false;
}
}
});
任何想法可能是什么?该站点跳转到div容器但没有动画。