laypage前端分頁外掛程式實現ajax非同步分頁_AJAX相關

來源:互聯網
上載者:User

本文執行個體為大家分享了laypage前端分頁外掛程式,ajax非同步分頁,擷取json資料實現無重新整理分頁,供大家參考,具體內容如下

function GetList(pageIndex) {      var _this = ""      var clone_this = "";      _this = $(".BindDataList");//資料列表容器,      clone_this = _this.clone(true);      var pageSize = 25;//每頁展示的條數      $.ajax({        type: "get",        async: false,//非同步鎖定,預設為true        url: "../ashx/System/DefaultAjax.ashx",//後端處理資料,返回json格式        data: {"pageIndex": pageIndex, "pageSize": pageSize, },        contentType: "application/json; charset=utf-8",        success: function (data) {          var json = eval("(" + data + ")");          if (json.PageCount > 0) //資料總條數           {            _this.html("");            for (var i = 0; i < json.rows.length ; i++) {              var html = "<li>json資料</li>";              _this.append(html);            }            jsonpage(json, pageIndex, pageSize);          }          else {            _this.html("");            _this.append("");          }        }      });    } function jsonpage(json, pageIndex, pageSize) {      var coun = json.PageCount;//總資料條數      var pagecount = coun % pageSize == 0 ? coun / pageSize : coun / pageSize + 1;//計算多少頁      var laypageindex = laypage({        cont: 'project_page', //容器。值支援id名、原生dom對象,jquery對象。        skin: '#fb771f',        pages: pagecount, //通過後台拿到的總頁數        curr: pageIndex, //初始化當前頁        first: '|<', //將首頁顯示為數字1,。若不顯示,設定false即可        last: '>|', //將尾頁顯示為總頁數。若不顯示,設定false即可        prev: '<', //若不顯示,設定false即可        next: '>', //若不顯示,設定false即可        jump: function (obj, first) { //觸發分頁後的回調          if (!first) { //點擊跳頁觸發函數自身,並傳遞當前頁:obj.curr            SearchHotTag(obj.curr);          }        }      });    }

以上就是本文的全部內容,希望對大家學習laypage分頁外掛程式有所啟發和協助,謝謝大家的閱讀。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.