摘要:
YII中ajax分页有多种实现方法,比较传统的就是在view中写JS来实现,大概的就是这样:在view中js大概逻辑是这样:1$('#listview .yiiPager a').live('click',function(){2$.ajax({3url:$(this).attr('href'),4success:function(html){5$('#listview').html(html);6}7});8return false;//阻止a标签9});然后在controller中判断ajax请求,再使用renderParti 阅读全文