Computer >> Máy Tính >  >> Lập trình >> HTML

Thực thi một tập lệnh khi phần tử không hợp lệ trong HTML?


Để thực thi tập lệnh khi phần tử không hợp lệ trong HTML, hãy sử dụng oninvalid thuộc tính.

Ví dụ

Bạn có thể thử chạy mã sau để triển khai oninvalid thuộc tính.

<!DOCTYPE html>
<html>
   <head>
      <title>HTML oninvalid attribute</title>
   </head>
   <body>
      <h2>ID</h2>
      <form action = "/new.php">
         <input type = "text" placeholder = "Student ID" name = "sname" oninvalid = "alert('Fill it first!')" required /><br>
         <input type = "submit" value = "Submit">
      </form>
   </body>
</html>