vue 监听滚动条
2019-04-02 本文已影响0人
兜兜里冒糖糖
created() {
window.onscroll = () => {
var scrollTop =
document.documentElement.scrollTop || document.body.scrollTop;
var windowHeight =
document.documentElement.clientHeight || document.body.clientHeight;
var scrollHeight =
document.documentElement.scrollHeight || document.body.scrollHeight;
if (scrollHeight ==( scrollTop - windowHeight )) {
alert('已经滚动到底部了')
}
};
},