jsp 頁面倒計時

$(function(){
autoLogin();
})
var a;
function autoLogin(){
$("#autoLogin").html("<span>(3)</span>秒後跳轉到首頁");
var i=2;
a = setInterval(function(){
$("#autoLogin").html("("+i+")秒後跳轉到首頁");
if(i==0){
window.location.href="${ctx }/index.html";
}
i--;
},1000);
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章