- scroll 事件
- resize 事件
scroll事件在文档或文档元素滚动时触发,主要出现在用户拖动滚动条
window.onscroll = function(e){var srcrollHeight = document.documentElement.scrollTop;console.log(srcrollHeight);}//orwindow.addEventListener("scroll",function(){var srcrollHeight = document.documentElement.scrollTop;console.log(srcrollHeight);})
resize事件在改变浏览器窗口大小时触发
window.onresize = function(){console.log("窗口发生变化");}
