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

วิธีที่ถูกต้องในการทำงานกับช่องทำเครื่องหมาย HTML5


ต่อไปนี้คือวิธีที่ถูกต้อง -

<input name = "your_name" value = "your_value" type = "checkbox">

ตัวอย่าง

นี่คือตัวอย่าง −

<!DOCTYPE html>
<html>
   <head>
      <title>Checkbox Control</title>
   </head>
   <body>
      <form>
         <input type = "checkbox" name = "maths" value = "on"> Maths
         <input type = "checkbox" name = "physics" value = "on"> Physics
      </form>
   </body>  
</html>