自Chrome更新后,我的脚本已停止工作
$('.button').click(function() {
$('html, body').animate({scrollTop: 600}, 1000);
});
这用于向下滚动点击,但现在它什么也没做。控制台日志显示body.scrollTop is deprecated in strict mode. Please use 'documentElement.scrollTop' if in strict mode and 'body.scrollTop' only if in quirks mode.
我试过
$(document.documentElement).animate(....); //Nothing happens
$(document.documentElement.body).animate(....); //