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

history.back()无法返回

<!DOCTYPE html>

<html>

 <head>

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

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

  <style>

  #text1{float:left;}

  </style>

 </head>

 <body>

  <!--先编写好网页布局-->

  <h4>操作成功</h4>

  <div id="text1"></div>

  <input type="button" value="返回" onclick="goback1"/>

 

  <script type="text/javascript">

 var num=5;

 function Time1()

 {

 document.getElementById("text1").innerHTML=num+"秒后返回主页";

 num--;

 if(num==-1){

clearInterval(i);

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

}

 }

 var i=setInterval(Time1,1000);

 

   //获取显示秒数的元素,通过定时器来更改秒数。

function goback1()

{

window.history.back();

}

   //通过window的location和history对象来控制网页的跳转。

   

 </script> 

</body>

</html>


正在回答

4 回答

  <input type="button" value="返回" onclick="goback1()"/>

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

谢谢你!

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

<!DOCTYPE html>
<html>
 <head>
  <title>浏览器对象</title>  
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>  
 
 
  <style>
  #text{float:left;}
  </style>
 </head>
 <body>
  <!--先编写好网页布局-->
  <h4>操作成功</h4>
  <div id="text"></div>
  <input type="button" value="返回" onclick="goback()"/>
 
 
  <script type="text/javascript">  
  var num=5;
  function time(){
      document.getElementById("text").innerHTML=num+"秒后返回主页";
      num--;
      if(num==-1){
          clearInterval(i);
          window.location.href="http://www.imooc.com";
      }
  }
  var i=setInterval(time,1000);
   //获取显示秒数的元素,通过定时器来更改秒数。
  function goback(){
      window.history.back();
  }
   //通过window的location和history对象来控制网页的跳转。
 
 </script>
</body>
</html>

为什么不能返回呢?求大神赐教

1 回复 有任何疑惑可以回复我~
#1

__影 提问者

标点问题:document.getElementById("text").innerHTML=num+"秒后返回主页"; 最后一个分号应该是英文模式下打出来,这显然是中文标点。 一般用Dreamwaver敲代码都会有错误提示
2016-08-23 回复 有任何疑惑可以回复我~

  <input type="button" value="返回" onclick="goback1"/>

改成

  <input type="button" value="返回" onclick="goback()1"/>

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

举报

0/150
提交
取消
JavaScript进阶篇
  • 参与学习       468284    人
  • 解答问题       21892    个

本课程从如何插入JS代码开始,带您进入网页动态交互世界

进入课程

history.back()无法返回

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