码迷,mamicode.com
首页 > 其他好文 > 详细

wap 往下拉自动加载更多数据

时间:2015-11-09 12:17:14      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:

var stop=true;
		$(window).scroll(function(){
			totalheight = parseFloat($(window).height()) + parseFloat($(window).scrollTop());
			if($(document).height() <= totalheight){
				if(stop==true){
					stop=false;
					$.post("http://www.lovexm.com/test.php", {start:1, n:50},function(txt){
						$("#pro-list-li").after(txt);
						stop=true;
					},"text");
				}
			}
		});

 

wap 往下拉自动加载更多数据

标签:

原文地址:http://www.cnblogs.com/ilovexiaoming/p/4949550.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!