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 - srcdoc 속성 - 아이프레임(iframe) src 속성 내용 대체할 태그내용 지정 (= sr…
attribute HTML - srclang 속성 - 트랙태그 소스의 언어코드 지정 (= srclang속성 = 에스알시랭속성/…
attribute HTML - srcset 속성 - 다른 환경에서 적용할 이미지소스 지정 (= srcset속성 = 에스알시셋속…
attribute HTML - start 속성 - 순서있는 리스트 시작값 설정 (= start속성 = 스타트속성) ※ 오엘태그…
attribute HTML - step 속성 - 입력 가능 숫자 간격 설정 (= step속성 = 스텝속성) ※ 입력 가능 배수…
attribute HTML - style 속성 ★ - 인라인 스타일 지정 (= style속성 = 스타일속성)
attribute HTML - tabindex 속성 - 탭색인번호 지정 (= tabindex속성 = 탭인덱스속성) ※ 탭넵비게…
attribute HTML - target 속성 ★ - (링크된 문서 열 곳 / 폼 제출할 곳) 지정 (= target속성 =…
attribute HTML - title 속성 ★ - 요소애 대한 추가 정보 지정 (= title속성 = 타이틀속성)
attribute HTML - translate 속성 - 요소 내용 번역 허용 여부 지정 (= translate속성 = 트랜슬…
attribute HTML - type 속성 ★★★ - 요소 타입 지정 (= type속성 = 타입속성)
attribute HTML - usemap 속성 - 이미지를 이미지맵으로 지정 (= usemap속성 = 유즈맵속성|유스맵속성)
attribute HTML - value 속성 ★★★ - 요소값 지정 (= value속성 = 밸류속성) ※ 초기값/기본값/현재…
attribute HTML - width 속성 - 너비 지정 (= width속성 = 위드스속성) ※ 가로길이 설정
attribute HTML - wrap 속성 - FORM 제출 시, TEXTAREA 텍스트 감싸기 (= wrap속성 = 랩속성…
21/24
목록
 홈  PC버전 로그인 일본어
그누앞단언어
그누뒷단언어
그외코딩언어
그누보드
제작의뢰
Q&A
커뮤니티
웹유틸
회원센터
홈짱닷컴 PC버전 로그인