我試圖運行滾動加載更多,但我希望它只能運行一次。每次滾動到達頁面底部時,下面的代碼都會繼續運行。 我需要添加一些代碼阻止JavaScript加載不止一次
if ($(window).scrollTop() == $(document).height() - $(window).height() && x==24){
,但我不知道該怎麼添加,使其使其只運行一次或使代碼運行不止一次阻止。
<script>
if ($(window).scrollTop() == $(document).height() - $(window).height() && x==24){
});
});
</script>
所以基本上我的問題是如何防止JavaScript運行多次。
讓我來試試,看看它的工作原理 – letsworktogether
哪裏,我會添加此代碼。 ($(window).scrollTop()== $(document).height() - $(window).height()&& x == 24){ – letsworktogether
@letsworktogether查看更新後的帖子,使用' $ .Callbacks(「once」)' – guest271314