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

我的代码,说要用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>


正在回答

1 回答

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

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

举报

0/150
提交
取消

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

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