码迷,mamicode.com
首页 > Web开发 > 详细

jquery下拉加载更多

时间:2017-05-23 22:45:47      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:settime   document   加载   script   blog   end   log   scrolltop   set   

var end=1;
		$(window).bind("scroll",function(){
			if($(document).scrollTop() + $(window).height() > $(document).height() - 100 && end != 0)// 接近底部100px
			{
				$(‘#next‘).html(‘加载中...‘);
				end=0;
				console.log("1");
				setTimeout(function(){
					end=1;
					$(‘#next‘).html(‘‘);
				},3000)
			}
		});

  

jquery下拉加载更多

标签:settime   document   加载   script   blog   end   log   scrolltop   set   

原文地址:http://www.cnblogs.com/fm060/p/6896446.html

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