有谁知道如何在此脚本重定向并关闭窗口之前添加 5 秒延迟?
<script>
window.opener.location = '/redirect.html';
window.close();
</script>
有谁知道如何在此脚本重定向并关闭窗口之前添加 5 秒延迟?
<script>
window.opener.location = '/redirect.html';
window.close();
</script>
使用setTimeout
:
setTimeout(function() {
window.opener.location = '/redirect.html';
window.close();
}, 5000);
它通过传入一个函数和一定的延迟来工作,以毫秒为单位。该函数将在延迟到期后调用。