Angular ui.bootstrap.pagination分页
(编辑:jimmy 日期: 2024/11/18 浏览:3 次 )
本文实例为大家分享了Angular 分页的具体代码,供大家参考,具体内容如下
1、Html
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width" /> <title>MyPagination</title> <link href="//netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet" /> <script src="/UploadFiles/2021-04-02/angular.js">2、Action
[HttpPost] public JsonResult GetPageList(int pageIndex, int pageSize, string name) { int pageCount = 1; int recordTotal = 0; int topRecordTotal = 0; List<Students> list = new List<Students>(); try { list = svc.GetAllStudent(); recordTotal = list.Count(); pageCount = (int)Math.Ceiling((decimal)recordTotal / pageSize); topRecordTotal = (pageIndex - 1 < 0 "text-align: center">以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
下一篇:bootstrap中的 form表单属性role="form"的作用详解