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

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

使用JavaScript怎么實(shí)現(xiàn)一個(gè)分頁導(dǎo)航效果

使用JavaScript怎么實(shí)現(xiàn)一個(gè)分頁導(dǎo)航效果?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。

成都創(chuàng)新互聯(lián)公司-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比豐城網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式豐城網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋豐城地區(qū)。費(fèi)用合理售后完善,十多年實(shí)體公司更值得信賴。

第一部分是在頁面顯示內(nèi)容的處理

function SetListPage() {
   $.ajax({
    type: "GET",
    url: "ajax/PhoneList.ashx?",
    datatype: 'json',
    success: function (data, textStatus) {
     var li_list = "";
     if (data != "") {
      var cc = jQuery.parseJSON(data);     //轉(zhuǎn)換Json對(duì)象
      var pagesize = 6;        //設(shè)置每頁顯示數(shù)
      var pagecount = Math.ceil(cc.length / pagesize); //獲取頁數(shù)
      SetPageCount(pagecount);      //設(shè)置跳轉(zhuǎn)頁簽
      for (var j = 0, l = pagecount; j < l; j++) {  //設(shè)置頁面內(nèi)容
       if (j == 0) {
        li_list += "";
       }
       else {
        li_list += "";
       }
       li_list += "";
       li_list += "姓名";
       li_list += "手機(jī)號(hào)碼";
       li_list += "郵箱";
       li_list += " ";
       var index = j * pagesize;
       var rowcount = j * pagesize + pagesize;
       if (rowcount > cc.length) {
        rowcount = cc.length;
       }
       for (var i = index; i < rowcount; i++) {
        var Name = cc[i]['Name'];
        var PhoneNO = cc[i]['PhoneNO'];
        var Email = cc[i]['Email'];
        li_list += "";
        li_list += "" + Name + "";
        li_list += "" + PhoneNO + "";
        li_list += "" + Email + "";
        li_list += " ";
       }
       li_list += "";
      }
     }     
    }
  });
}

第二部分是動(dòng)態(tài)的設(shè)置頁碼并添加頁碼導(dǎo)航的方法

function SetPageCount(count) {
   if (count > 0) {  //設(shè)置動(dòng)態(tài)頁碼
    var li_list = "";
    li_list += "
    ";     li_list += "上一頁";     li_list += "
    • ";     li_list += "1";     for (var i = 2; i <= count; i++) {      if (i <= 5) {       li_list += "" + i + "";      } else {       li_list += "" + i + "";      }     }     li_list += "
  • ";     li_list += "下一頁";     li_list += "
";     if (li_list != null && li_list.length > 0) {      $("#PhonePageCount").html(li_list);      $('.01pageIndex a').click(function () { //添加添加分頁導(dǎo)航的事件       var pagecounts = $('.01pageIndex a').length;       $(this).addClass('active');       $(this).parent().siblings().find('a').removeClass('active');       var index = $(this).parent().index() || 0;       if (1 < index && index < pagecounts - 2) {        $('.01pageIndex a').hide()        $('.01pageIndex a').eq(index - 2).show();        $('.01pageIndex a').eq(index - 1).show();        $('.01pageIndex a').eq(index).show();        $('.01pageIndex a').eq(index + 1).show();        $('.01pageIndex a').eq(index + 2).show();       }       $('#phonelist>table').siblings().hide();       $('#phonelist>table').eq(index).show();      })      $('#01preage').click(function () {       var currentPageIndex = $('.01pageIndex').find("a[class$='active']").parent().index();       var pagecounts = $('.01pageIndex a').length;       if (currentPageIndex > 0) {        var thisobj = $('.01pageIndex a').eq(currentPageIndex - 1);        thisobj.addClass('active');        thisobj.parent().siblings().find('a').removeClass('active');        if (0 < currentPageIndex && currentPageIndex < pagecounts - 3) {         $('.01pageIndex a').hide()         $('.01pageIndex a').eq(currentPageIndex - 3).show();         $('.01pageIndex a').eq(currentPageIndex - 2).show();         $('.01pageIndex a').eq(currentPageIndex - 1).show();         $('.01pageIndex a').eq(currentPageIndex).show();         $('.01pageIndex a').eq(currentPageIndex + 1).show();        }        $('#phonelist>table').siblings().hide();        $('#phonelist>table').eq(currentPageIndex - 1).show();       }      })      $('#01nextage').click(function () {       var currentPageIndex = $('.01pageIndex').find("a[class$='active']").parent().index();       var pagecount = $('.01pageIndex a').length - 1;       var pagecounts = $('.01pageIndex a').length;       if (pagecount > currentPageIndex) {        var thisobj = $('.01pageIndex').eq(currentPageIndex + 1);        thisobj.find('a').addClass('active');        thisobj.siblings().find('a').removeClass('active');        if (0 < currentPageIndex && currentPageIndex < pagecounts - 3) {         $('.01pageIndex a').hide()         $('.01pageIndex a').eq(currentPageIndex - 1).show();         $('.01pageIndex a').eq(currentPageIndex).show();         $('.01pageIndex a').eq(currentPageIndex + 1).show();         $('.01pageIndex a').eq(currentPageIndex + 2).show();         $('.01pageIndex a').eq(currentPageIndex + 3).show();        }        $('#phonelist').siblings().hide();        $('#phonelist>table').eq(currentPageIndex + 1).show();       }      })     }   } }

看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝您對(duì)創(chuàng)新互聯(lián)的支持。


分享名稱:使用JavaScript怎么實(shí)現(xiàn)一個(gè)分頁導(dǎo)航效果
本文URL:http://weahome.cn/article/peijis.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部