我需要继续检查文档的滚动位置。我的代码目前是:
setInterval(function(){ check() }, 1000);
function check() {
if ($(document).scrollTop() >700) {
// do something, like drop down a menu or whatever
}
if ($(document).scrollTop() <= 700) {
// do something
}
}
它使我的网页非常滞后。是否有任何替代方法可以检查使用较少资源的用户滚动位置?