欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

js实现翻页功能

程序员文章站 2022-05-28 20:34:06
#create ydds #date 2008-06-20 var nextPageNo = 0; function pageTop(){  &nb...

#create ydds
#date 2008-06-20
var nextPageNo = 0;
function pageTop(){
    nextPageNo = 0
    document.getElementById("bodyDiv").innerHTML = HTMLStr[nextPageNo];
    loadData('bodyDiv');
    checkTime();
}
function pageNext(){
    if (nextPageNo < HTMLStr.length - 1)
        nextPageNo++;
    document.getElementById("bodyDiv").innerHTML = HTMLStr[nextPageNo];
    loadData('bodyDiv');
    checkTime();
}
function pageFor(){
    if (nextPageNo > 0)
        nextPageNo--;
    document.getElementById("bodyDiv").innerHTML = HTMLStr[nextPageNo];
    loadData('bodyDiv');
    checkTime();
}
function pageBottom(){
    nextPageNo = HTMLStr.length - 1;
    document.getElementById("bodyDiv").innerHTML = HTMLStr[nextPageNo];
    loadData('bodyDiv');
    checkTime();
}
function goPage(){
    var numStr = document.getElementById("InputNo").value;
    if (numStr == undefined || numStr == null) {
        return;
    }
    var num = parseInt(numStr);
    if (num > HTMLStr.length) {
        nextPageNo = HTMLStr.length - 1;
    }
    else {
        nextPageNo = num - 1;
    }
    document.getElementById("bodyDiv").innerHTML = HTMLStr[nextPageNo];
    loadData('bodyDiv');
    checkTime();
}
本文出自 “一灯” 博客