首頁  >  文章  >  web前端  >  在JavaScript中,"oninvalid"事件的用途是什麼?

在JavaScript中,"oninvalid"事件的用途是什麼?

WBOY
WBOY轉載
2023-09-21 23:45:121421瀏覽

在JavaScript中,oninvalid事件的用途是什麼?

如果中新增的欄位值無效,則會觸發oninvalid事件。如果用戶在提交前忘記填寫表單,請新增一則訊息。

範例

您可以嘗試執行以下程式碼來了解如何實作oninvalid  JavaScript 中的事件。

<!DOCTYPE html>
<html>
   <body>
      <script>
         function resetFunct() {
            alert("The form was reset");
         }
      </script>
     
       <form>
         Enter Name: <input type="text"
         required oninvalid = "alert(&#39;Fill the form before submitting!&#39;);" >  <br>
         Enter birth month: <input type=  "text"> <br>
         <input type = "submit">
         <input type = "reset">
      </form>
   </body>
</html>

以上是在JavaScript中,"oninvalid"事件的用途是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除