滾動條滾動到底部觸發事件

//滾動條到底部自動追加一頁
function autoAppendMaterialType(){
    $(".all-materialType").scroll(function(){
        if ((this.scrollTop + parseInt(this.style.height, 10))==this.scrollHeight){
            pageNo = pageNo+1;
            getAllMaterialType();
        }
    });
}this

相關文章
相關標籤/搜索