$(function(){ //查看更多 $('.addMore').click(function(){ var that = this; var htmlCode=""; var page = $(this).attr('data-page'); var lastpage = $(this).attr('data-lastpage'); var cid = $(this).attr('data-cid'); if(page>=lastpage){ alert('没有更多数据了'); return false; } page = page*1+1; $.ajax({ type:'post', url:'/index/product/pagedata', data:{ page, lastpage, cid }, beforeSend:function(){ $(that).text('加载中...'); }, success : function(data){ $.each(data,function(index,item){ htmlCode +='\
\
\ \ \
\

'+item.title+'

\

'+item.desc+'

\
\
\
\
\
'; }); $('.pro-list .row').append(htmlCode); $(that).attr('data-page',page); $(that).text('查看更多'); if(page == lastpage){ $(that).text('没有列多了~'); $(that).css('background','#ccc'); } } }); }); $('.noadd').text('没有列多了~').css('background','#ccc'); })