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

แอตทริบิวต์ขั้นต่ำของ HTML จะทำงานใน Firefox หรือไม่


นาที Firefox ไม่รองรับแอตทริบิวต์ของหมายเลขประเภทอินพุต แต่ทำงานอย่างถูกต้องใน Google Chrome

เรามาดูตัวอย่างกัน:

<!DOCTYPE html>
<html>
   <head>
      <title>HTML input number</title>
   </head>
   <body>
      <form action = "" method = "get">
         Mention any number between 1 to 10
         <input type = "number" name = "num" min = "1" max = "10"><br>
         <input type = "submit" value = "Submit">
      </form>
   </body>
</html>