1. 程式人生 > >實現幾秒後頁面跳轉

實現幾秒後頁面跳轉

member settime meid var else mem html class function

/*
   功能: 實現幾秒後跳轉頁面 
*/


window.onload=function(){
    goTime();
}
var goUrl="member_add.jsp";

function goTime(){
    var time= parseInt(document.getElementById("timeId").innerHTML);
    time--;
    if(time==0){
        window.location=goUrl;
    }else{
        document.getElementById("timeId").innerHTML=time;
        setTimeout(goTime,
1000); } }

實現幾秒後頁面跳轉