如果中新增的欄位值無效,則會觸發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('Fill the form before submitting!');" > <br> Enter birth month: <input type= "text"> <br> <input type = "submit"> <input type = "reset"> </form> </body> </html>
以上是在JavaScript中,"oninvalid"事件的用途是什麼?的詳細內容。更多資訊請關注PHP中文網其他相關文章!