기초공사 (html,css,javascript)
childrenNodes / children 본문
<section id ="section4">
<h1>Ex4 : childNodes를 이용한 노드선택</h1>
<div class="box">
<input />
<input />
</div>
</section>
//Ex4 : childNodes를 이용한 노드선택
window.addEventListener("load", function() {
var section3 = document.querySelector("#section4");
var box = section4.querySelector(".box");
//childNodes는 빈 공백도 node로 생각한다. 그래서 등장한 것이 children
// var input1 = box.childNodes[0];
// var input2 = box.childNodes[1];
//children은 태그 있는 것만 자식으로 생각한다.
var input1 = box.children[0];
var input2 = box.children[1];
input1.value = "hello";
input2.value = "okay";
});
box 클래스 안에 childNodes[ ] 와 children[ ] 으로 노드를 선택 할 수 있는데 childNodes[ ]는 코드 내 빈공백도 자식으로 인식하기 때문에 children[ ]을 사용해서 box클래스 태그안에 있는 input을 선택해준다.
'academy > JavaScript' 카테고리의 다른 글
6번 board - 모달창에 삭제 수정 - 버튼의글까지 나옴.--해결 --또다른 issue --미완료 (0) | 2024.05.18 |
---|---|
책 - 함수형코딩 (0) | 2024.05.18 |
과제-타이머 만들기- 안되는 이유-코드로.-해결 (0) | 2024.05.13 |
axios cdn 다운로드- 설치 (0) | 2024.05.12 |
수업 0512 - 프론트엔드, 백엔드 요청응답 (0) | 2024.05.12 |