为什么不显示秒数?不能返回上一页?

来源:8-17 编程练习

长缨在手1

2017-02-14 14:09

<!DOCTYPE html>

<html>

 <head>

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

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

 </head>

 <body>

  <p style="font-family:20px;color:red;">操作成功</p>

  <input type="text" id="miao" >

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

 

  <script type="text/javascript">  

  var i;

  var a;

 function chuan()

 {

   document.getElementById("miao").value=i;  

 }

 

 function miaoshu()

 {

     for(i=5;i>0;i--)

     {

         a=setTimeout(chuan,10000);

     }

 if(i==0) location.assign("http://www.imooc.com/u/4482869");

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

 function stop()

 {

     clearTimeout(a);

     window.history.back();

 }

miaoshu();

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

   

 </script> 

</body>

</html>


写回答 关注

1回答

  • 慕粉0945213899
    2017-02-14 14:36:38

      window.history.back(-1);  你没有加数值没法返回上一页,不计数是因为你没有返回秒数的数值

    长缨在手1

    我返回了秒数啊document.getElementById("miao").value=i;

    2017-02-14 15:57:15

    共 1 条回复 >

JavaScript进阶篇

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

468060 学习 · 21891 问题

查看课程

相似问题