• 회원가입
  • 로그인
  • 구글아이디로 로그인

[HTML_Objects] JS - <input type="checkbox"> 객체 ★ - checkbox타입 input태그 (= 인풋체크박스태그/체크박스인풋태그) ※ 체크박스 최소 1개 이상 선택 필수

목차

  1. <input type="checkbox"> 객체 정의 - 체크박스형 인풋
  2. <input type="checkbox"> 객체 구문
  3. <input type="checkbox"> 객체 예제 - 접근
  4. <input type="checkbox"> 객체 예제 - 생성
  5. <input type="checkbox"> 객체 속성
  6. <input name="네임명"> 예제 - checkbox 최소 1개 이상 선택 필수

 

<input type="checkbox"> 객체 정의 - 체크박스형 인풋

 

HTML <input type="checkbox"> 태그(요소) 의미.

 

 

<input type="checkbox"> 객체 구문

 

[접근]

var x = document.getElementById("요소ID");

또는,

var x = document.getElementById("폼요소ID").elements;

 

[생성]

var x = document.createElement("INPUT");

x.setAttribute("type", "checkbox");

 

 

<input type="checkbox"> 객체 예제 - 접근

 

Homzzang.com 최고 동의 : <input type="checkbox" id="hz">


<button onclick="homzzang()">클릭</button>


<script>

function homzzang() {

  var x = document.getElementById("hz");

  x.checked = true;

}

</script> 

 

결과보기 

 

<input type="checkbox"> 객체 예제 - 생성

 

<button onclick="homzzang()">클릭</button>


<script>

function homzzang() {

  var x = document.createElement("INPUT");

  x.setAttribute("type", "checkbox");

  document.body.appendChild(x);

}

</script> 

 

결과보기 

 

<input type="checkbox"> 객체 속성

 

autofocus

페이지 로드될 때 체크박스가 자동으로 foucs 갖는지 여부 설정/반환.

 

checked

체크박스의 체크 상태 설정/반환.

 

defaultChecked

체크된 속성의 기본값 반환.

 

defaultValue

체크박스의 기본값 설정/반환.

 

disabled

확인란이 비활성화되어 있는지 여부 설정/반환.

 

form

체크 박스가 포함 된 폼에 대한 참조를 반환.

 

indeterminate

체크박스의 불확정 상태 설정/반환.

 

name

체크박스의 name 속성값 설정/반환.

 

required

양식을 제출하기 전에 체크박스를 선택해야하는지 여부 설정/반환.

 

type

체크박스가 어떤 형태의 폼 요소인지 반환.

 

value

체크박스의 value 속성값 설정/ 반환. 

 

※ <input type="checkbox"> 객체는 표준 속성/메서드/이벤트 지원.

 

<input name="네임명"> 예제 - checkbox 최소 1개 이상 선택 필수

[name이 배열일 때]

 

<label for='mb_1'><input name="mb[]" type="checkbox" value="mb_1" id ="mb_1" required> mb_1</label>

<label for='mb_2'><input name="mb[]" type="checkbox" value="mb_2" id ="mb_2" required> mb_2</label>

<label for='mb_3'><input name="mb[]" type="checkbox" value="mb_3" id ="mb_3" required> mb_3</label>

<label for='mb_4'><input name="mb[]" type="checkbox" value="mb_4" id ="mb_4" required> mb_4</label>


<input type="button" value="클릭" onclick="isChecked()">


<script>

function isChecked() {

    mbs = document.getElementsByName("mb[]");

    for (count = i = 0; i < mbs.length; i++) count += mbs[i].checked;

    if (count == 0) alert("하나이상 필수선택");

}

</script>

 


[name이 동일 문자열일 때]

 

<label for='mb_1'><input name="mb" type="checkbox" value="mb_1" id ="mb_1" required> mb_1</label>

<label for='mb_2'><input name="mb" type="checkbox" value="mb_2" id ="mb_2" required> mb_2</label>

<label for='mb_3'><input name="mb" type="checkbox" value="mb_3" id ="mb_3" required> mb_3</label>

<label for='mb_4'><input name="mb" type="checkbox" value="mb_4" id ="mb_4" required> mb_4</label>


<input type="button" value="클릭" onclick="isChecked()">


<script>

function isChecked() {

    mbs = document.getElementsByName("mb");

    for (count = i = 0; i < mbs.length; i++) count += mbs[i].checked;

    if (count == 0) alert("하나이상 필수선택");

}

</script>


결과보기


[name이 모두 다를 때]

 

<label for='mb_1'><input name="mb_1" type="checkbox" value="mb_1" id ="mb_1" required> mb_1</label>

<label for='mb_2'><input name="mb_2" type="checkbox" value="mb_2" id ="mb_2" required> mb_2</label>

<label for='mb_3'><input name="mb_3" type="checkbox" value="mb_3" id ="mb_3" required> mb_3</label>

<label for='mb_4'><input name="mb_4" type="checkbox" value="mb_4" id ="mb_4" required> mb_4</label>


<input type="button" value="클릭" onclick="isChecked()">


<script>

function isChecked() {

    for (count = 0, i = 1; i <= 4; i++) count += document.getElementsByName("mb_" + i)[0].checked;

    if (count == 0) alert("하나이상 필수선택");

}

</script>


비타주리 님 (220408) https://sir.kr/qa/455825

PS. name 속성값은 기본적으로 배열변수로 간주하는 듯함. (정확하진 않음.)

 


분류 제목
HTML_Objects JS - <html> 객체 ★ - HTML문서 (= html태그 = html요소 = 에이치티엠엘태그)
HTML_Objects JS - <i> 객체 - 이탤릭체 (=기울어진 글씨체 = 글씨 기울어지게 = i태그 = 아이태그, 이탤릭태그…
HTML_Objects JS - <iframe> 객체 ★ - 타웹페이지삽입 (= iframe태그 = 아이프레임태그)
HTML_Objects JS - <img> 객체 ★ - 사진/그림/이미지 (= img태그 = 이미지태그)
HTML_Objects JS - <ins> 객체 - 텍스트삽입표시 (= ins태그 = 인스태그 = 인서트태그)
HTML_Objects JS - <input type="button"> 객체 - button타입 input태그 (= 인풋버튼태그)
HTML_Objects JS - <input type="checkbox"> 객체 ★ - checkbox타입 input태그 (= 인풋…
HTML_Objects JS - <input type="color"> 객체 - color타입 input태그 (= 인풋컬러태그) ※ …
HTML_Objects JS - <input type="date"> 객체 - date타입 input태그 (= 인풋데이트태그) ※ 날…
HTML_Objects JS - <input type="datetime"> 객체 - datetime타입 input태그 (= 인풋데이…
HTML_Objects JS - <input type="datetime-local"> 객체 - datetime-local타입 inp…
HTML_Objects JS - <input type="email"> 객체 - email타입 input태그 (= 인풋이메일태그)
HTML_Objects JS - <input type="file"> 객체 ★ - file타입 input태그 (= 인풋파일태그) ※ …
HTML_Objects JS - <input type="hidden"> 객체 ★ - hidden타입 input태그 (= 인풋히든태그…
HTML_Objects JS - <input type="image"> 객체 ★ - image타입 input태그 (= 인풋이미지태그)…
HTML_Objects JS - <input type="month"> 객체 - month타입 input태그 (= 인풋먼스태그) ※ …
HTML_Objects JS - <input type="number"> 객체 - number타입 input태그 (= 인풋넘버태그) …
HTML_Objects JS - <input type="password"> 객체 - password타입 input태그 (= 인풋패스…
HTML_Objects JS - <input type="radio"> 객체 ★ - radio타입 input태그 (= 인풋라디오태그 …
HTML_Objects JS - <input type="range"> 객체 - range타입 input태그 (= 인풋레인지태그) ※…
3/6
목록
찾아주셔서 감사합니다. Since 2012