jquery倒计时过几秒页面跳转 js倒计时

时间:2022-12-29 22:04:55

//银行认证成功跳转
var time=setInterval (showTime, 1000);
var second=5;
function showTime()
{
if(second==0)
{
window.location="/account/toCardBindPc.shtml";
clearInterval(time);
}
$(".sub-text").html('<font>'+second+'s</font> 后将跳转到银行卡认证页面。');
second--;
}

 

jquery倒计时过几秒页面跳转 js倒计时