移到底部時觸發事件

$(window).scroll(function(event){
        let wScrollY = window.scrollY; // 當前滾動條位置
        let wInnerH = window.innerHeight; // 設備窗口的高度(不會變)
        let bScrollH = document.body.scrollHeight; // 滾動條總高度
        if (wScrollY + wInnerH >= bScrollH) {
           //處理事件
        }
    });
相關文章
相關標籤/搜索