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

怎么模拟不出返回效果

<!DOCTYPE html>

<html>

 <head>

  <title>浏览器对象</title>  

  <meta http-equiv="Content-Type" content="text/html; charset=gb2312"/>   

 </head>

 <body>

  <H4>操作成功</H4>

  <p>

     <b id="second">5</b>秒后回到主页&nbsp;<a href="javascript:goBack();">返回</a>  

  </p>

 

<script type="text/javascript">  

 

var sec = document.getElementById("second");

var i = 5;

var timer = setInterval(function(){

i--;

sec.innerHTML = i;

if(i==1){

window.location.href =  "http://www.imooc.com/";

}

},1000);

 

  function goBack(){ 

window.history.go(-1);

  }  

  </script> 

 </body>

</html>


正在回答

1 回答

http://img1.sycdn.imooc.com//5e78162b000151d609870751.jpg

同学,贴了你的代码,也可以运行的,最好先新开个页面,再复制该html链接运行,亲测有效。


0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

怎么模拟不出返回效果

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