真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

ajax中怎么實現(xiàn)無刷新分頁功能

本篇文章給大家分享的是有關(guān)ajax中怎么實現(xiàn)無刷新分頁功能,小編覺得挺實用的,因此分享給大家學(xué)習(xí),希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

恩陽網(wǎng)站建設(shè)公司創(chuàng)新互聯(lián)建站,恩陽網(wǎng)站設(shè)計制作,有大型網(wǎng)站制作公司豐富經(jīng)驗。已為恩陽1000+提供企業(yè)網(wǎng)站建設(shè)服務(wù)。企業(yè)網(wǎng)站搭建\外貿(mào)網(wǎng)站建設(shè)要多少錢,請找那個售后服務(wù)好的恩陽做網(wǎng)站的公司定做!

html頁



  
      
  table{ border:solid 1px #444; background-color:Aqua;}
  table td{border:solid 1px #444;}
  
  
  
    $(function () {
      var pageindex = 1;
      var pagesize = 10;
      /*如果將代碼封裝成一個函數(shù),那么除非顯示調(diào)用(loaddata()),否則函數(shù)中的代碼不會執(zhí)行
      根據(jù)傳遞的頁碼和每頁顯示的記錄數(shù)量獲取數(shù)據(jù)
      */
      function loaddata() {
        $.ajax({
          type: "post",
          contentType: "application/json",
          url: "WebService1.asmx/GetListAjax",
          data: "{pagesize:" + pagesize + ",pageindex:" + pageindex + "}",
          success: function (result) {
            //處理返回來的數(shù)據(jù)
            var strtable = '';
            strtable += '';
            for (var i = 0; i < result.d.length; i++) {


              strtable += '';
              strtable += '';
              strtable += '';
              strtable += ''
              strtable += '';
              strtable += '';
            }
            strtable += '
編號標(biāo)題內(nèi)容創(chuàng)建時間
' + result.d[i].Id + '' + result.d[i].NewsTitle + '' + result.d[i].NewsContent + '' + result.d[i].CreateTime + '
';             $('#mydiv').html(strtable);           }         })       }       //根據(jù)傳遞到后臺的每頁顯示的記錄數(shù)量來獲取最大的頁碼(就是一共有多少頁)       $.ajax({         type: "post",         contentType: "application/json",         url: "WebService1.asmx/GetLastPageindex",         data: "{pagesize:" + pagesize + "}",         success: function (result) {           lastpageindex = result.d;         }       })       //顯式調(diào)用函數(shù),在頁面初次加載時加載第一頁數(shù)據(jù)       loaddata();       //下一頁       $('a:eq(2)').click(function () {         if (pageindex < lastpageindex) {           pageindex++;           loaddata();         }       })       //上一頁       $('a:eq(1)').click(function () {         if (pageindex > 1) {           pageindex--;           loaddata();         }       })       //第一頁       $('a:first').click(function () {         pageindex = 1;         loaddata();       })       //最后一頁       $('a:eq(3)').click(function () {         pageindex = lastpageindex;         loaddata();       })       $('a:last').click(function () {         pageindex = $('#txtPageindex').val();         loaddata();       })     })      
第一頁上一頁下一頁最后一頁Go

WebService1.asmx

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
using System.Data;


namespace 分頁
{
  /// 
  /// WebService1 的摘要說明
  /// 
  [WebService(Namespace = "http://tempuri.org/")]
  [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
  [System.ComponentModel.ToolboxItem(false)]
  // 若要允許使用 ASP.NET AJAX 從腳本中調(diào)用此 Web 服務(wù),請取消對下行的注釋。
  [System.Web.Script.Services.ScriptService]
  public class WebService1 : System.Web.Services.WebService
  {


    [WebMethod]
    public string HelloWorld()
    {
      return "Hello World";
    }
    [WebMethod]
    public List GetListAjax(int pagesize,int pageindex)
    {
      BLL.T_News1 bnews = new BLL.T_News1();
      DataTable dt = bnews.GetListDataTable(pagesize,pageindex);
      List list = new List();
      int Id;
      string newstitle = "";
      string newscontent = "";
      DateTime createtime;
      for (int i = 0; i < dt.Rows.Count; i++)
      {
        Id = Convert.ToInt32(dt.Rows[i]["Id"]);
        newstitle = dt.Rows[i]["NewsTitle"].ToString();
        newscontent = dt.Rows[i]["NewsContent"].ToString();
        createtime = Convert.ToDateTime(dt.Rows[i]["CreateTime"]);
        Model.T_News1 news = new Model.T_News1()
        {


          Id = Id,
          NewsTitle = newstitle,
          NewsContent = newscontent,
          CreateTime = createtime
        };
        list.Add(news);
      }
      return list;
        
    }
    [WebMethod]
    public int GetLastPageindex(int pagesize)
    {
      BLL.T_News1 bnews = new BLL.T_News1();
      int totalcount = bnews.GetRecordCount("");
      if (totalcount % pagesize == 0)
      {
        return totalcount / pagesize;
      }
      else
      {
        return totalcount / pagesize + 1;
      }
    }


  }
}

以上就是ajax中怎么實現(xiàn)無刷新分頁功能,小編相信有部分知識點可能是我們?nèi)粘9ぷ鲿姷交蛴玫降?。希望你能通過這篇文章學(xué)到更多知識。更多詳情敬請關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


本文名稱:ajax中怎么實現(xiàn)無刷新分頁功能
轉(zhuǎn)載注明:http://weahome.cn/article/ihjdhh.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部