HTML

[form] HTML - <input type="checkbox"> 태그 - 체크박스 모양 INPUT (= 인풋체크박스타입/체크박스타입인풋/체크박스인풋 요소)

목차
  1. <input type="checkbox"> 예제 - 체크박스 모양 INPUT 요소
  2. <input type="checkbox"> 정의
  3. <input type="checkbox"> 구문
  4. <input type="checkbox"> 예제 - 체크박스 안 배경색 변경

 

<input type="checkbox"> 예제 - 체크박스 모양 INPUT 요소

 

<form action="/action_page.php">

  <input type="checkbox" id="html" name="html" value="html">

  <label for="html"> HTML</label><br>

  <input type="checkbox" id="css" name="css" value="css">

  <label for="css"> CSS</label><br>

  <input type="checkbox" id="js" name="js" value="js">

  <label for="js"> JS</label><br><br>

  <input type="submit" value="확인">

</form>

 

결과보기


PS.

  • id, name, value 속성의 값은 달라도 됨. (통일시키면 관리 편함.)
  • id 속성 - ① CSS/JS 등으로 요소 제어. ② <label>태그와 연결
  • name 속성 - 서버로 데이터 전달 시, 전달된 데이터의 이름 역할.
  • value 속성 - 선택한 데이터가 들어감.

  

 

<input type="checkbox"> 정의

 

체크박스 모양 <input> 요소.

 


 

1.

  • 보통, 사각형 모양으로 표시됨. 
  • 사용자가 1개 이상 택일 가능.
  • <label> 태그 이용해 체크박스 범위 늘려서, 접근성 향상 가능.
  • 체크박스 안 배경색 변경 안 되므로, <label> 요소 이용해 변경.

 

2. cf.

<input type="radio"> 태그 - 오직 1개만 택일 가능.

 

3.

주요 브라우저 모두 지원.

 

4. MDN <input type="checkbox"> 예제보기

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input/checkbox

 

 

<input type="checkbox"> 구문

 

<input type="checkbox">

 

 

<input type="checkbox"> 예제 - 체크박스 안 배경색 변경

 

<input type="checkbox"> 경우, background 속성 적용 X.
따라서, 연결된 <label> 요소를 이용해 배경색 변경 필요.

 


[예제1] - <input type="checkbox"> 요소는 배경색 적용 X

 

<style>

body {background:black;}

input {background:red;}

</style>

 

<input type="checkbox">

 

결과보기


[예제2] - <label> 요소 이용해 배경색 적용

 

<style>

body {background: black;}


.box {

display: inline-block;

position: relative;

margin-right: 10px;

}


.box input[type="checkbox"] {

display: none;

}


.my {

width: 20px;

height: 20px;

background: gray;

position: absolute;

top: 0;

left: 0;

}


.box input[type="checkbox"]:checked + .my {

background: green; /* 체크 시 배경색 */

}

</style>


<div class="box">

  <input type="checkbox" id="hz">

  <label for="hz" class="my"></label>

</div>

 

결과보기 



분류 제목
attribute HTML - onkeyup 속성 ★ - 키보드키 올라갈 때 실행 (= onkeyup속성 = 온키업속성) ※ …
attribute HTML - onload 속성 ★ - 지정 객체가 로드된 경우 실행 (= onload속성 = 온로드속성) ※…
attribute HTML - onloadeddata 속성 - 미디어 로드되고 준비 완료 시 실행 (= onloadeddata…
attribute HTML - onloadedmetadata 속성 - 미디어 로드되고 준비 완료 시 실행 (= onloaded…
attribute HTML - onloadstart 속성 - 미디어 로드 시작 시 실행 (= onloadstart속성 = 온…
attribute HTML - onmousedown 속성 - 마우스버튼 내려갈 때 실행 (= onmousedown속성 = 온마…
attribute HTML - onmousemove 속성 ★ - 마우스커서가 지정요소 안으로 이동 시 실행 (= onmouse…
attribute HTML - onmouseout 속성 ★ - 마우스커서가 지정요소 밖으로 이동 시 실행 (= onmouseo…
attribute HTML - onmouseover 속성 ★ - 마우스커서가 지정요소 위에 있을 때 실행 (= onmouseo…
attribute HTML - onmouseup 속성 - 마우스버튼 올라갈 때 실행 (= onmouseup속성 = 온마우스업속…
attribute HTML - onmousewheel 속성 - (폐기예고) 마우스휠 움직일 때 실행 (= onmousewhe…
attribute HTML - onoffline 속성 - 브라우저가 오프라인으로 작동할 때 실행 (= onoffline속성 =…
attribute HTML - ononline 속성 - 브라우저가 온라인으로 작동할 때 실행 (= ononline속성 = 온온…
attribute HTML - onpagehide 속성 - 웹페이지가 숨겨질 때 실행 (= onpagehide속성 = 온페이지…
attribute HTML - onpageshow 속성 - 사용자가 웹페이지 탐색 시 실행 (= onpageshow속성 = 온…
17/24
목록
 홈  PC버전 로그인 일본어
그누앞단언어
그누뒷단언어
그외코딩언어
그누보드
제작의뢰
Q&A
커뮤니티 2
웹유틸
회원센터
홈짱닷컴 PC버전 로그인