jb51内容分页函数 原创

复制代码 代码如下:

allpages=ubound(contentarray)
for dxy_ii=0 to allpages
pagelist1="当前"&dxy_ii+1&"/"&(allpages+1)&"页 "
pagepre=""
pagelast=""
if dxy_ii>0 then
cpage=cint(dxy_ii)
if cpage<0 then cpage=0
if cpage=1 then
cpage1=id&".htm"
else
cpage1=id&"_"&cpage&".htm"
end if
pagepre="上一页 "
end if
if dxy_ii下一页"
for dxy_i=0 to allpages
if dxy_i=0 then
    if dxy_ii=dxy_i then
    alist=dxy_i+1&" "
    else
    alist=alist&""&dxy_i+1&" "
    end if
else
    if dxy_ii=dxy_i then
    alist=alist&(dxy_i+1)&" "
    else
    alist=alist&""&dxy_i+1&" "
    end if
end if
next
pagelist=pagelist1&pagepre&alist&ahlist&pagelast
alist=""

你可能感兴趣的:(jb51内容分页函数 原创)