(function () {
//5s跳转页面
setTimeout(function () {
window.top.location.href = "http://localhost:57941/Default.aspx";
}, 5000);
var tempshijian = 5;
function shijian() {//从5s开始倒计时
var I = setInterval(function () {
if (tempshijian != 0) {
tempshijian--;
document.getElementById("mysetTimeout").innerHTML = tempshijian;
}
},1000);
}
shijian();
})();