问答详情
源自:8-17 编程练习

我的代码,说要用location,好像不用,用history就行了,有没有大神帮我优化下代码

<!DOCTYPE html>

<html>

 <head>

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

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

 </head>

 <body>

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

  <h1 style="text-align: center;">操作成功</h1>

  <br><br>


  <p style="text-align: center;"><strong id="seconds">5</strong>秒后回到主页<a href="llou.html">返回</a></p>

  <script type="text/javascript">  

 

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

   var int=setInterval(getseconds,1000);

   var seconds=4;

   function getseconds()

   {

   document.getElementById("seconds").innerHTML=seconds;

    seconds--;

    if(document.getElementById("seconds").innerHTML==1)

   {

    clearInterval(int);

    history.back();

   }

   }

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

   

 </script> 

</body>

</html>


llou.html文件


<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<title>主页</title>

</head>

<body>

<h1 style="text-align: center;">我是主页</h1>

<a href="8-17test.html" style="text-align: center; display: block;text-decoration: none;color:blue;">点击跳转到8-17test.html</a>

</body>

</html>


提问者:鸥耶 2018-09-14 21:06

个回答

  • 笑傲独行侠
    2018-09-15 12:14:59

    没什么毛病,只是题目要求而已。要求点返回返回上一个页面,五秒无操作要打开一个新页面,此时需要用到location,这是两个要求。