我从我的 PHP 代码中调用了一些 JavaScript,但我希望第二部分保持 5 秒。
我发现了setTimeOut(something, time)
(JS)和.delay(time)
(JQuery)之类的东西,但它们似乎都不适用于我的情况。
这是我的PHP:
$feedback = '<script>
$(document).ready(function() {
noty({"text": "Yep, you did it",
"closeButton": true, "closeOnSelfClick": true,
"closeOnSelfOver": false, "modal": false
});
});
</script>
<script>
window.location = "http://www.mysite.be/new/index.php";
</script>';
window.location
这是我想暂停 5 秒的第二部分(the )。但我不知道该怎么做。有什么建议么?