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

这个代码为什么不执行返回操作?

</body><!DOCTYPE html>

<html>

 <head>

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

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

 </head>

 <body>

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

     <h1>操作成功!</h1>

     <p><span id="seconds">5</span>秒后回到主页

     <a href="javascript:open();">返回</a></p>

     

     <script type="text/javascript">  

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

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

     var intervalTime = 5000;

     var frq = 1000;

     var t = intervalTime / frq;

     

     function open(){

         if(window.history.length==0){

             location.assgin("www.baidu.com");

         }

         else{

             window.history.go(-1);

         }

        }

     

     function countdown(){

         if(t==0){

             open();

         }

         else{

             t = t - 1;

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

         }

        }

     //间隔函数

     setInterval(countdown, frq);

     

     

 </script> 

    

</body>

</html>

</html>


正在回答

3 回答

location.assign中assign 写成assgin,还用要写完整的URL:http://www.baidu.com

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

浏览器进入开发者工具,看一下有没有报错信息

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

举报

0/150
提交
取消

这个代码为什么不执行返回操作?

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