'+listarry[i].brief+'
'+listarry[i].date+''
}else{
strhtml+='
'+listarry[i].brief+'
'+listarry[i].date+''
}
}
$(".rmlx19383_ind01 ul").append(strhtml);
if(end==listarry.length){
jiazai=false;
$(".rmlx19383_ind01 .more").hide();
}else{
jiazai=true;
}
}
loaddata(0);
function addPullLoaderEvent() {
if(window.addEventListener) {
window.addEventListener('scroll', pullGetMore, false);//滚动条滚动执行addcomment方法
} else {
window.attachEvent('onscroll', pullGetMore);//ie滚动条滚动执行addcomment方法
}
}
function pullGetMore(ev) {
var sTop = document.body.scrollTop || document.documentElement.scrollTop; //距离body的距离
var dHeight = $(document).height(), //文档的高度
cHeight = document.documentElement.clientHeight; //可见内容区高度
var shangpanyi = $(".rmlx19383_ind01").offset().top;
var modelHeight = $(".rmlx19383_ind01").height();
var ua = navigator.userAgent.toLowerCase();
if ((ua.indexOf('android') > -1)) {
cHeight = cHeight + 70; //上面菜单高度
}
if (sTop > shangpanyi + modelHeight - cHeight-50) {
if(jiazai){
jiazai=false;
page++
setTimeout(function(){
loaddata(page);
},500)
}
}
}
if(isMobile){
var targ="_self"
addPullLoaderEvent()
}else{
var targ="_blank"
$(".rmlx19383_ind01 .more span").click(function(){
if(jiazai){
jiazai=false;
page++
loaddata(page);
}
})
}