我想要一个平滑滚动到内部链接。在Firefox中运行良好,但在Chrome中我收到错误“body.scrollTop在严格模式下被弃用”
我的代码是
$(function() {
$('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;
}
}
});
});
然而,问题是在我改变了这个
之后 $('html,body').animate({scrollTop: target.offset().top}, 1000);
到
$('html').animate({scrollTop: target.offset().top}, 1000);
链接根本不起作用,控制台中没有错误/警告。
答案 0 :(得分:0)
让'html,body'
定位更多浏览器。
只要Chrome显示“已弃用”警告(不是错误),它仍然会响应body.scrollTop
并且应该像您期望的那样滚动。
我认为混淆是因为Chrome 32警告了已弃用的功能,但Chrome 33仅使用 已弃用的功能而没有任何警告。