亚洲在线久爱草,狠狠天天香蕉网,天天搞日日干久草,伊人亚洲日本欧美

為了賬號安全,請及時綁定郵箱和手機立即綁定
已解決430363個問題,去搜搜看,總會有你想問的

Javascript 表單在提交時不重定向

Javascript 表單在提交時不重定向

ITMISS 2023-05-11 14:30:14
我的表單正在調用以下函數。它在桌面上運行,用戶被定向到下載確認/失敗頁面。但是,在移動設備上(在 iOS 和 iPad 上測試過),用戶不會被重定向。任何人都可以闡明一下嗎?功能function submit_form(){    var email = document.getElementById("main-email-field").value    // todo email validation    if (email.length > 7)    {        window.location = '/download-confirmation'    }    else    {        window.location = '/download-failed'    }    return false;}形式<form id="main-email-form" class="email-form" method="POST" onsubmit="submit_form()" action="https://europe-west1-hoddle-website.cloudfunctions.net/registerUser" target="hiddenFrame">    <input id="main-email-field" class="main-email-field" type="email" name="email" placeholder="Email address">    <button id="main-email-button" class="main-email-button">Download</button>    <input type="hidden" id="main-referralID-field" name="referralID" value="">    <input type="hidden" id="main-referralType-field" name="referralType" value="">    <input type="hidden" id="main-referralUserID-field" name="referralUserID" value="">    </form>        <iframe id="hiddenFrame" class="hiddenFrame" name="hiddenFrame" width="0" height="0" border="0" style="display: none;"></iframe>
查看完整描述

1 回答

?
梵蒂岡之花

TA貢獻1900條經驗 獲得超5個贊

嘗試這種超時和 preventDefault 的組合


window.addEventListener("load", function() {

  document.getElementById("main-email-form").addEventListener("submit", function(e) {

    const email = document.getElementById("main-email-field").value

    // todo email validation

    console.log(email,email.length); 

    if (email.length > 7) {

      setTimeout(function() {

        console.log("Download allowed");

        // window.location = '/download-confirmation'; // uncomment after testing

      }, 2000)

    } else {

      e.preventDefault(); // stop submission

      console.log("Download failed");

      // window.location = '/download-failed'; // uncomment after testing

    }

  })

})

<form id="main-email-form" class="email-form" method="POST" action="https://europe-west1-hoddle-website.cloudfunctions.net/registerUser" target="hiddenFrame">

  <input id="main-email-field" class="main-email-field" type="email" name="email" placeholder="Email address">

  <button type="submit" id="main-email-button" class="main-email-button">Download</button>

  <input type="hidden" id="main-referralID-field" name="referralID" value="">

  <input type="hidden" id="main-referralType-field" name="referralType" value="">

  <input type="hidden" id="main-referralUserID-field" name="referralUserID" value="">

</form>


<iframe id="hiddenFrame" class="hiddenFrame" name="hiddenFrame" width="0" height="0" border="0" style="display: none;"></iframe>


查看完整回答
反對 回復 2023-05-11
  • 1 回答
  • 0 關注
  • 143 瀏覽
慕課專欄
更多

添加回答

舉報

0/150
提交
取消
微信客服

購課補貼
聯系客服咨詢優惠詳情

幫助反饋 APP下載

慕課網APP
您的移動學習伙伴

公眾號

掃描二維碼
關注慕課網微信公眾號