| 首頁 上一頁 ");
}//當(dāng)前頁是首頁
if(countPage>1&¤tPage!=(countPage-1))//如果不是最后一頁
{document.write(" 下一頁 尾頁 ");
nums();
}
else if(countPage==1){
document.write("");}
else
{document.write(" 下一頁 尾頁 ");
nums();
}
function nums(){
document.write("第"+nextPage+"頁/共"+countPage+"頁 檢索到"+312+"條記錄 跳轉(zhuǎn)到");
document.write("");
document.write(" 頁 ");
document.write("");
}
function tored(){
document.getElementById('tored').className='hover';
}
function tono(){
document.getElementById('tored').className='';
}
function toPage(){
var _num = document.getElementById("num").value;
var str = "index"+"_"+(_num-1)+"."+"html";
var url = location.href.substring(0,location.href.lastIndexOf("/")+1);
if(_num<=1||_num==null)
location.href = url+"index"+"."+"html";
else if(_num>countPage)
alert("本頻道最多"+countPage+"頁");
else
location.href = url+str;
}
//function onEnterDown(){
// if(window.event.keyCode == 13){
// toPage();
// }
// }
|