Quit function on body onLoad

前端 未结 3 551
离开以前
离开以前 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:14

      setTimeout("location.replace('contact.html')",10000);
    

    Instead, you can try

      setTimeout(function(){window.location='contact.html'},10000);
    

提交回复
热议问题