2

由于this thread,我需要使用高版本的ui-bootstrap-tpls.js。但是,我意识到这个禁用bootstrap pagination,它适用于较低版本的ui-bootstrap-tpls.js。例如,this pagination workshttps://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/0.11.0/ui-bootstrap-tpls.js,而https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/2.5.0/ui-bootstrap-tpls.jsdoes not workBootstrap分页不适用于angular-ui-bootstrap/2.5.0/ui-bootstrap-tpls.js

有谁知道我能做什么?

回答

3

试试这个plunk有:代替

<ul uib-pagination total-items="totalItems" ng-model="currentPage" items-per-page="itemsPerPage" ng-change="pageChanged()"></ul> 

<pagination total-items="totalItems" items-per-page="itemsPerPage" ng-model="currentPage" ng-change="pageChanged()"></pagination> 
相关问题