📌  相关文章
📜  在 Javascript 代码示例中 5 秒后重定向到任何页面

📅  最后修改于: 2022-03-11 15:01:23.346000             🧑  作者: Mango

代码示例1
// Redirect to index page after 5 sec
setTimeout(function(){ window.location="index"; },5000);