簡體   English   中英

聯系表單重定向延遲

[英]Contact form redirect delay

我正在處理 WordPress 網站contact form 我想在用戶按下發送按鈕並5-sec delayredirect頁面。

以下代碼適用於redirecting ,但我也想在重定向前等待5 sec

  <script>
    document.addEventListener( 'wpcf7mailsent', function( event ) {
      location = 'https://www.inext.se/career/';
    }, 5000 );
    </script>

有誰知道我在這里做錯了什么以及為什么它可以完美redirecting但不會delaying 5 sec

要在一段時間后重定向用戶,請使用setTimeout

document.addEventListener("wpcf7mailsent", function() {
  setTimeout(function() {
    window.location = 'https://www.inext.se/career/'
  }, 5000);
});

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM