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

为什么直接用setTimeOut设置5秒后跳转不行呢,想请教大家

<!DOCTYPE html>

<html>

 <head>

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

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

 </head>

 <body>

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

  <h1>操作成功</h1>

  <p>5秒后回到主页 <a href="javascript:" onclick="history.back()" >返回</a></p>

  

  <script type="text/javascript">  

    function moveToAdd(){

        window.location.replace("https://www.imooc.com/");

    }

setTimeOut("moveToAdd()", 5000);

    

    

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

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

   

 </script> 

</body>

</html>


提问者:weixin_慕慕4224483 2020-09-07 16:10

个回答

  • 就是这样吧
    2020-09-23 17:14:31

    setTimeout(moveToAdd, 5000);

  • weixin_慕先生4035002
    2020-09-08 09:01:36

    你的计时机去哪里了