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