1 $(window).scroll(function () { 2 //已经滚动到上面的页面高度 3 var sl_top = $(this).scrollTop(); 4 //页面高度 5 var dm_Height = $(document).height(); 6 //浏览器窗口高度 7 var wd_Height = $(this).height(); 8 9 //此处是滚动条到底部时候触发的事件,在这里写要加载的数据,或者是拉动滚动条的操作 10 if($(‘#J_loadingData‘).css(‘display‘) == "none"){ 11 if (dm_Height == parseInt(sl_top+wd_Height)) { 12 $(‘#J_loadingData‘).show(); 13 setTimeout(function(){ 14 ajaxData(); 15 },3000) 16 } 17 18 } 19 }); 20 //请求数据 21 function ajaxData(){ 22 $.get(‘data/index.json‘,function(resp){ 23 if(resp.code == 1){ 24 $(‘#J_loadingData‘).hide(); 25 var lihtml = ‘‘; 26 $.each(resp.data.commodityList,function(){ 27 liHTML += ‘< a href=" ">‘ 28 +‘<li>‘ 29 +‘<div class="left-picture">‘ 30 +‘< img src="‘+this.commodityImg+‘" />‘ 31 +‘</div>‘ 32 +‘<div class="right-info">‘ 33 +‘<span class="commodity-title">‘+this.commodityInfo+‘</span>‘ 34 +‘<span class="market-price">市场价:¥‘+this.marketPrice+‘</span>‘ 35 +‘<span class="sc-price">森巢价:¥‘+this.scPrice+‘</span>‘ 36 +‘</div>‘ 37 +‘</li>‘ 38 +‘</ a>‘; 39 }) 40 $(‘.commodity-list‘).append(liHTML); 41 42 } 43 }) 44 }