解决方案:
原因是 jquery.easyui.min.js 源文件中,
由于第1页的total和其他页的total不相等,EasyUI会重新发起第1页的请求!
1、jQuery EasyUI 1.4.1 版本中 if(_633.total!=data.total){ 判断逻辑去掉;
2、修改为:_633.pagination("refresh",{pageNumber:opts.pageNumber||_633.pageNumber,total:data.total});
2022-08-06 19:09:28
解决方案:
原因是 jquery.easyui.min.js 源文件中,
由于第1页的total和其他页的total不相等,EasyUI会重新发起第1页的请求!
1、jQuery EasyUI 1.4.1 版本中 if(_633.total!=data.total){ 判断逻辑去掉;
2、修改为:_633.pagination("refresh",{pageNumber:opts.pageNumber||_633.pageNumber,total:data.total});