Quit function on body onLoad

前端 未结 3 555
离开以前
离开以前 2021-01-26 22:40

I need a script thats redirects the user to a second side, when the mainpage need to long to load.

I did this:

 

        
3条回答
  •  余生分开走
    2021-01-26 23:32

    Try this:

    var redirect = setTimeout(function(){
                      window.location = 'somewhere'
                   }, 10000)
    
    $(document).ready(function() { // or $(window).load(function() {
        clearTimeout(redirect);
    });
    

提交回复
热议问题