我在 WordPress 网站上工作contact form。在用户按下redirect发送按钮和5-sec delay.以下代码适用于,redirecting但我也想5 sec在重定向之前等待。 <script> document.addEventListener( 'wpcf7mailsent', function( event ) { location = 'https://www.inext.se/career/'; }, 5000 ); </script>有谁知道我在这里做错了什么以及为什么它是redirecting完美的但不是delaying 5 sec。
1 回答
隔江千里
TA贡献1906条经验 获得超10个赞
要在一段时间后重定向用户,请使用setTimeout
:
document.addEventListener("wpcf7mailsent", function() {
setTimeout(function() {
window.location = 'https://www.inext.se/career/'
}, 5000);
});
添加回答
举报
0/150
提交
取消