68

输入错误消息后 5 秒后,我需要重定向到特定的 url。首先,我使用了 Javascript,如下所示。

document.ready(window.setTimeout(location.href = "https://www.google.co.in",5000));

但它不是等待 5 秒。比我在 google 中搜索的问题要知道,当文档在 DOM 中加载时调用了“document.ready()”,而不是在 Web 浏览器中。

比我使用 jQuery 的 window.load() 函数,但我仍然没有得到我想要的。

$(window).load(function() {
               window.setTimeout(window.location.href = "https://www.google.co.in",5000);
            });

任何人都可以让我知道我需要做什么才能等待 5 秒。

4

8 回答 8

129

看起来你快到了。尝试:

if(error == true){

    // Your application has indicated there's an error
    window.setTimeout(function(){

        // Move to a new location or you can do something else
        window.location.href = "https://www.google.co.in";

    }, 5000);

}
于 2013-06-17T14:39:39.470 回答
41

您实际上需要window.setTimeout()在 5000 毫秒后在其中传递要执行的函数,如下所示:

$(document).ready(function () {
    // Handler for .ready() called.
    window.setTimeout(function () {
        location.href = "https://www.google.co.in";
    }, 5000);
});

欲了解更多信息:.setTimeout()

于 2013-06-17T14:38:57.820 回答
32

您可以使用此 JavaScript 函数。在这里,您可以向用户显示重定向消息并重定向到给定的 URL。

<script type="text/javascript">   
    function Redirect() 
    {  
        window.location="http://www.newpage.com"; 
    } 
    document.write("You will be redirected to a new page in 5 seconds"); 
    setTimeout('Redirect()', 5000);   
</script>
于 2014-02-16T06:39:07.153 回答
10

您需要将函数传递给setTimeout

$(window).load(function () {
    window.setTimeout(function () {
        window.location.href = "https://www.google.co.in";
    }, 5000)
});
于 2013-06-17T14:39:29.903 回答
8

在指定时间后使用 JavaScriptsetInterval()方法重定向页面。以下脚本将在 5 秒后重定向页面。

var count = 5;
setInterval(function(){
    count--;
    document.getElementById('countDown').innerHTML = count;
    if (count == 0) {
        window.location = 'https://www.google.com'; 
    }
},1000);

示例脚本和现场演示可以从这里找到 -使用 JavaScript 延迟后重定向页面

于 2016-02-10T15:35:09.653 回答
7
$(document).ready(function() {
    window.setTimeout(function(){window.location.href = "https://www.google.co.in"},5000);
});
于 2013-06-17T14:39:21.917 回答
4
setTimeout('Redirect()', 1000);
function Redirect() 
{  
    window.location="https://stackoverflow.com"; 
} 

//document.write("您将在 1000 -> 1 秒,2000 -> 2 秒后重定向到新页面");

于 2018-10-10T11:24:06.607 回答
0
<script type="text/javascript">
      function idleTimer() {
    var t;
    //window.onload = resetTimer;
    window.onmousemove = resetTimer; // catches mouse movements
    window.onmousedown = resetTimer; // catches mouse movements
    window.onclick = resetTimer;     // catches mouse clicks
    window.onscroll = resetTimer;    // catches scrolling
    window.onkeypress = resetTimer;  //catches keyboard actions

    function logout() {
        window.location.href = 'logout.php';  //Adapt to actual logout script
    }

   function reload() {
          window.location = self.location.href;  //Reloads the current page
   }

   function resetTimer() {
        clearTimeout(t);
        t = setTimeout(logout, 1800000);  // time is in milliseconds (1000 is 1 second)
        t= setTimeout(reload, 300000);  // time is in milliseconds (1000 is 1 second)
    }
}
idleTimer();
        </script>
于 2018-07-09T06:31:49.947 回答