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

哪位大神知道原因呀,那个秒数一直往下掉停不了,页返回不了我给的网址,谢谢,求教

<!DOCTYPE html>

<html>

 <head>

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

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

 </head>

 <body>

  <h3>操作成功</h3><!--先编写好网页布局-->

  <span id="mm">5</span>秒后回到主页<a href="www.imooc.com">返回</a>

  

 

  <script type="text/javascript">  

 var nn;

  var vv;

  var xx;

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

 function bb(){

     window.getElementById("mm")=nn;

     nn=nn-1;

     if(nn==0){

    

     window.location.assign("www.imooc.com");

 }

 }

 vv=window.setInterval(bb(),1000);

function cc(){

    window.clearInterval(vv);

}

 window.setInterval(cc(),1000*5);

   function xx(){

       window.history.back();

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

   

 </script> 

 <input type="button" value="返回上一页" onclick="xx()"/>

</body>

</html>


正在回答

1 回答

<!DOCTYPE html>

<html>

 <head>

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

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

 </head>

 <body onload="plan()">

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

  <h1>操作成功</h1>

  <p><span id="span"></span>秒后回到主页<a href="#">返回</a></p>

  

 

  <script type="text/javascript">  

  var num = 5;

  function plan(){

  num--;

  document.getElementById("span").innerHTML=num;

  var a = window.setTimeout(plan,1000);

  if(num==0){

  clearTimeout(a);

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

  }

  }

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

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

   document.getElementsByTagName("a")[0].onclick=function(){

    history.back();

   }

 </script> 

</body>

</html>


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

慕婉清5026906 提问者

document.getElementsByTagName("a")[0].onclick=function(){ history.back();是什么意思?前面是获取a标签内容,[0]是第一个函数吗?怎么解释。谢谢,怎么看成函数
2018-11-02 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

哪位大神知道原因呀,那个秒数一直往下掉停不了,页返回不了我给的网址,谢谢,求教

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