jquery page.js分页插件怎么添加跳转

JavaScript08

jquery page.js分页插件怎么添加跳转,第1张

不要带参数,page_index直接获取, function pageselectCallback() {page_index=$('#page_index').val()page_index=page_index+1function pageselectCallback(page_index, jq) {

//默认参数 分页代码:

var defaults = {

//id : '#paging',//id

leng: 9,//总页数

activeClass: 'page-active' ,//active类

firstPage: '首页',//

lastPage: '末页',

prv: '?',

next: '?',

//data : {},

}

本文实例为大家分享了jQuery Pagination分页插件的具体代码,供大家参考,具体内容如下

一、引用CSS和JS:

<link href="/Content/Plugins/jQuery.Pagination_v2.2/pagination.css" rel="external nofollow" rel="stylesheet"type="text/css" /> <script src="/Content/Plugins/jQuery.Pagination_v2.2/jquery.pagination.js" type="text/javascript"></script>

二、HTML:

<div id="Pagination" class="flickr" style="margin-top: 10pxmargin-left: 10px"> </div>

三、JS:

$(function () { var total = parseInt("@(ViewBag.total)") var page = parseInt("@(ViewBag.page)") - 1 var pageSize = parseInt("@(ViewBag.pageSize)")$("#Pagination").pagination(total, {callback: function (page_id) { window.location = "BoardList?page=" + page_id + "&pageSize=" + this.items_per_page }, //PageCallback() 为翻页调用次函数。prev_text: " 上一页",next_text: "下一页 ",items_per_page: 10, //每页的数据个数num_display_entries: 1, //两侧首尾分页条目数current_page: page, //当前页码num_edge_entries: 11 //连续分页主体部分分页条目数 }) })

四、后台代码:

public ActionResult BoardList() { PagerModel pager = new PagerModel() if (Request["page"] == null) {pager.page = 1 pager.rows = 10 pager.sort = "Id" pager.order = "desc" } else {pager.page = int.Parse(Request["page"]) + 1 pager.rows = int.Parse(Request["pageSize"]) pager.sort = "Id" pager.order = "desc" } boardManageService.GetList(ref pager) List<BoardModel>boardList = pager.result as List<BoardModel> ViewData["BoardModelList"] = boardList ViewBag.page = pager.page ViewBag.total = pager.totalRows ViewBag.pageSize = pager.rowsreturn View() } #endregion

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。