js scroll 滚动连续多次触发事件只执行一次
Posted Sunnie*花儿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js scroll 滚动连续多次触发事件只执行一次相关的知识,希望对你有一定的参考价值。
(function() { var finished = true; function loadData() { //xxxx finished = true; } dom.onscroll = function() { if(finished && this.scrollHeight - this.clientHeight == this.scrollTop) { finished = false; loadData(); } } })();
以上是关于js scroll 滚动连续多次触发事件只执行一次的主要内容,如果未能解决你的问题,请参考以下文章