美文网首页
js判断页面滚动高度

js判断页面滚动高度

作者: 野蘑菇丶 | 来源:发表于2019-06-27 18:08 被阅读0次

window.onscroll = function () {

  var g = document.documentElement.scrollTop || document.body.scrollTop;

  console.log(g)

  if (g > 800) {//大于800px要执行的事件

        alert("ss")

  }

  else if (g<800) {

           alert("aa")//小于要执行的事件

  }

}

相关文章

网友评论

      本文标题:js判断页面滚动高度

      本文链接:https://www.haomeiwen.com/subject/hgfdcctx.html