function loadData(callback)
{
var totalheight =
parseFloat($(window,document).height()) +
parseFloat($(window,document).scrollTop());
if ($(document).height() <= totalheight)
{
callback();
}
}
$(window,document).scroll(
function(){
loadData(
function(){
alert(
'数据加载中。。。。。。')
});
});
转载请注明原文地址: https://ju.6miu.com/read-1299579.html