JavaScript 輸入 type=submit 無法工作?


為了使其工作,你可以將 onclick 與 input type = “submit” 結合使用。

示例

以下為程式碼 −

<!DOCTYPE html>
<html lang="en">
<head>
   <meta charset="UTF-8">
   <meta name="viewport" content="width=device-width, initial-scale=1.0">
   <title>Document</title>
</head>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<body>
   <form action="#">
      <label for="firstName">First Name:</label>
      <input type="text" id="fName" name="firstName" placeholder="Enter your First Name" />
      <button type="submit" onclick="submitForm(event)">Submit</button>
   </form>
<span id="result"></span>
</body>
<script>
   var firstName = null;
   function submitForm(evnt) {
      evnt.preventDefault();
      firstName = document.getElementById("fName").value;
      document.getElementById("result").innerHTML = "The First Name is=" + firstName;
   }
</script>
</html>

若要執行上述程式, hãy將檔名儲存為 anyName.html(index.html)。右鍵單擊該檔案,然後在 VS Code 編輯器中選擇“用活動伺服器開啟”選項。

輸出

這將產生以下輸出 −

現在,在文字框中輸入一些值,然後單擊“提交”按鈕。

輸出

這將產生以下輸出 −

現在單擊“提交”按鈕。這將產生以下輸出 −

更新於:27-Oct-2020

2 千次瀏覽

開啟你的 職業生涯

透過完成課程獲得認證

入門
廣告
© . All rights reserved.