08320170929


--5秒后跳转到另外的页面--
<script>
var count = 5;
var intervalID = setInterval(function() {
count--;
if(count <= 0) {
/*location.href = "http://www.baidu.com";*/
open("http://www.baidu.com","_blank","width=400,height=400");
clearInterval(intervalID);
} else {
//后台 显示剩余时间
console.log(count);
var span = document.getElementById("show");
//前台 显示剩余时间
span.innerHTML = count+"";
}
}, 1000);
</script>


tiger准备跳转3