为了账号安全,请及时绑定邮箱和手机立即绑定

自己放在html运行就没问题

<body>
<!--先编写好网页布局-->	
<p id="hlength">window.history.length为:</p>  
<h4>操作成功</h4>  
<p>      
<span id="count">
</span>      秒后回到主页      
<a href="#" onclick="history.go(-1)">返回</a>  
</p>     

<script type="text/javascript">     
var num=5;   
var len=document.getElementById("hlength");   
len.innerHTML=len.innerHTML+window.history.length;    
function startcount(){        
document.getElementById("count").innerHTML=num;        
num=num-1;        
setTimeout(startcount,1000);        
if(num==0){        	
location="https://www.baidu.com/";        	
location.href="https://www.baidu.com/";        
}    
}     
startcount();     
//获取显示秒数的元素,通过定时器来更改秒数。   
//通过window的location和history对象来控制网页的跳转。    
</script> 
</body>


正在回答

举报

0/150
提交
取消

自己放在html运行就没问题

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信