时间:2021-07-01 10:21:17 帮助过:3人阅读
HTTP 头中有延时跳转的指令
如 header("Refresh:5;url=index.php");
将在 5 秒钟后转到 index.php
HTTP 头中有延时跳转的指令
如 header("Refresh:5;url=index.php");
将在 5 秒钟后转到 index.php
不是我要的效果,我要的是在跳转前可以把本页面内容显示出来,请写个整体的代码看看喽,谢谢
$(document).ready(function(){
setTimeout(function(){location.href="bbb.html";},5000);
});