在滚动模块里,判断滚动模块是否滚动到底部
2018-04-10 本文已影响0人
孤单的天使
废话不多说,直接上代码,基于jq的
$(".porducts").scroll(function () {
var ProHight=$(this).height();
var ProAll_Hight=$(this).get(0).scrollHeight;
var scroll_height=$(this).scrollTop();
if (ProHight+scroll_height >=ProAll_Hight){
console.log("到底了")
}
else {
console.log("没到底")
}
})