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>