标签:跳转页面 页面 首页 计时 span ntb ati ase ref
<script type="text/javascript">
var i = 5;
var intervalid;
intervalid = setInterval("fun()", 1000);
function fun() {
if (i == 0) {
window.location.href = "<%=basePath%>home";
clearInterval(intervalid);
}
document.getElementById("mes").innerHTML = i;
i--;
}
</script>
<span id="littleTip">将在(<strong id="mes">5</strong>)秒钟后返回首页!</span></div>
标签:跳转页面 页面 首页 计时 span ntb ati ase ref
原文地址:http://www.cnblogs.com/austinspark-jessylu/p/6441259.html