JS實現(xiàn)當前頁居中分頁效果的方法
更新時間:2015年06月18日 09:17:18 作者:瘋狂的流浪
這篇文章主要介紹了JS實現(xiàn)當前頁居中分頁效果的方法,涉及javascript操作頁面元素與樣式的相關(guān)技巧,需要的朋友可以參考下
本文實例講述了JS實現(xiàn)當前頁居中分頁效果的方法。分享給大家供大家參考。具體實現(xiàn)方法如下:
function show_page(cur_pc)
{
var cp=cur_pc; //curent page count
var tp=this.p; //total page count
var sp=this.pc; //show page count
var bp; //begin page count
var ep; //end page count
if(sp%2==0) sp=sp+1; //this process need an odd number
var dp=Math.floor(sp/2); //each side count to show
var dif=tp-sp; //check weather it have enough page to make mid-show
var f=cp-dp; //to check weather it has enough page to make mid-show from the begin
var g=tp-(cp+dp); //to check weather it has enough page to make mid-show from the end
if(sp && dif>=0)
{
if(g>0)
{
if(f>0)
{
bp=f;
ep=cp+dp;
}
else
{
bp=1;
ep=2*dp+1;
}
}
else
{
bp=tp-2*dp;
ep=tp;
}
}
else
{
bp=1;
ep=tp;
}
var buf=[];
for(var i=bp;i<=ep;i++)
{
if(i==cur_pc)
{
buf.push("<a href='javascript:;' class='current'>",i,"</a>");
}
else
{
buf.push("<a href='javascript:;' class='normal'>",i,"</a>");
}
}
document.write(buf);
}
運行效果如下圖所示:

希望本文所述對大家的javascript程序設(shè)計有所幫助。
相關(guān)文章
Javascript中this關(guān)鍵字指向問題的測試與詳解
this是Javascript中一個非常容易理解錯,進而用錯的特性。所以下面這篇文章主要給大家介紹了關(guān)于Javascript中this關(guān)鍵字指向問題的相關(guān)資料,文中通過測試的題目考驗大家對this的熟悉程度,需要的朋友可以參考借鑒,下面來一起看看吧。2017-08-08

