Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

แทนที่การตรวจสอบ HTML5


หากต้องการละเว้นการตรวจสอบความถูกต้องของ HTML คุณสามารถลบแอตทริบิวต์เมื่อคลิกปุ่มโดยใช้ JavaScript

Uer removeAttribute() เพื่อลบแอตทริบิวต์ออกจากองค์ประกอบที่ตรงกันแต่ละองค์ประกอบ

<!DOCTYPE html>
<html>
   <body>
      <form>
         First Name: <input type = "text" id = "fname" value = "Amit" required>
         <input type = "radio" onclick = "dislay('fname')"><br>
      </form>
      <script>
         function display(id) {
            document.getElementById(id).value = document.getElementById(id).removeAttribute('required');
         }
      </script>
   </body>
</html>