SetInterval_1

window.onload = function () {
timer = setInterval(autoRedirect, 1000);
}
var timer = null;
var flag = 5;

function autoRedirect()
{
lb.innerText = flag.toString() + "faf";
flag = flag - 1;

if (flag == 0) {
location.href = "../Users/Home.aspx";
clearInterval(timer);
}
}

原文地址:https://www.cnblogs.com/yemaxu/p/4039174.html