js滚动条监听到底自动加载内容

//此方法调用时先执行数据查询
//该方法为获取数据的方法,看你自己用什么方法获取数据。
getMsg(“0”);

//id为滚动条DIV元素 scroll为滚动条监测方法
$(’#openAllRecords’).scroll(function() {
console.log(“AllscrollTop”+this.scrollTop);
console.log(“AllHeight”+this.scrollHeight);
console.log(“AllclientHeight”+this.clientHeight);
//id为滚动条内容元素
var o = $(’#openAllData’);
if(o!=null && o.length !=0){
//获取网页的完整高度(fix)
var scrollTop = this.scrollTop;//当前滚动条的高度
var clienHeitht = this.clientHeight;//滚动条初始位置到浏览器顶部的高度
var scrollHeight = this.scrollHeight;//总高度

        //当 top+clientHeight = scrollHeight的时候就说明到底儿了
        if(scrollTop>=(parseInt(scrollHeight)-clienHeitht)){

//该方法为获取数据的方法,看你自己用什么方法获取数据。
getMsg(“0”);
}
}
});

你可能感兴趣的:(前端)