jQuery-plugins
jQuery-plugins copied to clipboard
pagination.js 1.5.1 两处bug
1.count和pagecount相等时,会出现0页和最大页+1.例如count=4,pagecount=4时,跳转第4页时候,会出现0页和5页。
if ($(this).hasClass(opts.nextCls)) { if (parseInt($obj.find('.' + opts.activeCls).text()) >= pageCount) 在第二个if中,最好加入int转换,不明情况下会出现比较错误。