使用jqueryform实现对数据的分页,基于无刷新,其中使用了pager分页插件作为前台分页
先上图基于jqueryform的实现
分页无刷新关键部分源码
$(document).ready(function() {
$('#goodsAction3').ajaxForm(//通过ajax方式提交表单数据
function(responseText, statusText){
//alert(responseText);
var bodyStart=responseText.lastIndexOf('<form');//重新构建form表单中的数据
var bodyStartEnd=responseText.indexOf('>',bodyStart)+1;
var htmlStr=responseText.substr(bodyStartEnd);
htmlStr=htmlStr.substring(0,htmlStr.lastIndexOf('</form>'));
$('form').html(htmlStr);
}
);
});
另外一个不是无刷新的分页,大家可以对比下两种分页的使用
大家可以到我csdn进行下载,里面有完整的数据库和源码文件!本人亲自调试成功,下载地址:http://download.csdn.net/detail/j1582830/5140952