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

为什么我这个代码在chrome/ie/edge都正常,但粘贴到慕课这里面就会打开无数个新百度首页

<!DOCTYPE html>

<html lang="zh-CN">

   <head>

       <title>setInterval_history</title>

       <meta charset="UTF-8">

   </head>

   <body>

       <span id="secondsBox">5</span>

       <span>秒后回到主页</span>

       <a href="" onclick="backWeb()">点击返回</a>

       <!-- <input type="button" onclick="countBox()" value="点击计时">  -->

   <script type="text/javascript">

       var i=document.getElementById("secondsBox").innerHTML;

       function countBox(){

           if(i>1){

               document.getElementById("secondsBox").innerHTML=i-1;

               i--;

           }

           else if(i==1){

               window.open("http://www.baidu.com","_blank");

               clearInterval(sum);

           }

       }

       var sum = setInterval(countBox, 1000);

       function backWeb(){

           window.history.back();

       }

   </script>

   </body>

</html>


正在回答

1 回答

课程 8-4 下面置顶的评论,可能同样原因吧。我也不清楚

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

举报

0/150
提交
取消

为什么我这个代码在chrome/ie/edge都正常,但粘贴到慕课这里面就会打开无数个新百度首页

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