확인란은 둘 이상의 옵션을 선택해야 할 때 사용됩니다.
다음은 HTML 코드, CheckBox.htm의 예입니다. , 두 개의 확인란이 있는 양식의 경우.
<html> <body> <form action = "main.jsp" method = "POST" target = "_blank"> <input type = "checkbox" name = "maths" checked = "checked" /> Maths <input type = "checkbox" name = "physics" /> Physics <input type = "checkbox" name = "chemistry" checked = "checked" /> Chemistry <input type = "submit" value = "Select Subject" /> </form> </body> </html>
위의 코드는 다음 결과를 생성합니다 -
다음은 웹 브라우저에서 체크박스 버튼에 대한 입력을 처리하는 main.jsp JSP 프로그램입니다.
<html> <head> <title>Reading Checkbox Data</title> </head> <body> <h1>Reading Checkbox Data</h1> <ul> <li><p><b>Maths Flag:</b> <%= request.getParameter("maths")%> </p></li> <li><p><b>Physics Flag:</b> <%= request.getParameter("physics")%> </p></li> <li><p><b>Chemistry Flag:</b> <%= request.getParameter("chemistry")%> </p></li> </ul> </body> </html>
위의 프로그램은 다음 결과를 생성합니다 -
체크박스 데이터 읽기
-
수학 플래그: :켜짐
-
물리학 플래그: :null
-
화학 깃발: :켜짐