我正在WordPress网站Axis: Horizontal
Alignment: Fill
Distribution: Fill
Spacing: 5
上工作。用户按下发送按钮以及contact form
之后,我要在redirect
页面上的哪个位置。
以下代码在5-sec delay
上工作正常,但我也想在重定向之前先redirecting
。
5 sec
有人知道我在这里做错什么,为什么是 <script>
document.addEventListener( 'wpcf7mailsent', function( event ) {
location = 'https://www.inext.se/career/';
}, 5000 );
</script>
而不是redirecting
的完美原因。
答案 0 :(得分:2)
要在一定时期后重定向用户,请使用setTimeout
:
document.addEventListener("wpcf7mailsent", function() {
setTimeout(function() {
window.location = 'https://www.inext.se/career/'
}, 5000);
});