jQuery-plugins icon indicating copy to clipboard operation
jQuery-plugins copied to clipboard

jQuery-plugins

Results 4 jQuery-plugins issues
Sort by recently updated
recently updated
newest added

//回车跳转指定页码 $document.keydown(function (e) { if (e.keyCode == 13 && $obj.find('.' + opts.jumpIptCls).val()) { var index = parseInt($obj.find('.' + opts.jumpIptCls).val()); that.filling(index); typeof opts.callback === 'function' && opts.callback(that); } }); 要把 $document...

![分頁](https://user-images.githubusercontent.com/28695885/55045274-3959e100-5078-11e9-97de-1dcc445a1a4b.png)

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

pageCount: 3, mode 值是fixed, count值是3时 , 有bug 分页器应该显示 1 2 3, 但是显示了1 2 3 4,end输出是4