각각 클릭이벤트달면안됨
모든노드대상시 - 빈공백도 텍스트로 여긴다 readonly attribute Node parentNode; readonly attribute Node firstChild; readonly attribute Node lastChild; readonly attribute Node previousSibling; readonly attribute Node nextSibling; readonly attribute List<Node> childNodes; |
모든노드대상 : 주석,텍스트,빈공백 모두 노드
모든노드가 아니라 element노드만 할때는 nextElementSibling
특정 앨리먼트만 readonly attribute Element parentElementNode; readonly attribute Element firstElementChild; readonly attribute Element lastElementChild; readonly attribute Element previousElementSibling; readonly attribute Element nextElementSibling; readonly attribute List<Element> children; |
Node와 ElementNode는 태그 노드와 텍스트 노드 전체를 가리키고, Element는 텍스트 노드를 제외하고, 흔히 생각하는 태그(<a>같은)만 가리킵니다. 따라서 태그만 검색하고 싶을 때는 Element가 붙은 메소드를 선택해야합니다.
nextElementSibling
//다음형제태그이름에 d-none을 제거
e.target.nextElementSibling.classList.toggle("d-none");
nextElementSibling vs nextSibling 차이
nextSibling은 태그사이의 공란(텍스트)가 출력된다.
온클릭은 부모에게한번만
item.parentNode : 위(up)버튼을 눌렀다면 up의 부모 div =" item "
item.parentNode.querySelector("input") : 부모노드중 input을 선택
'2021 Newlecture > Javascript' 카테고리의 다른 글
for in문으로 dataTransfer를 이용하기 / 객체속성나열하기 (0) | 2021.04.28 |
---|---|
(모바일) 자바스크립트코드분류 / onclick실행후 초기화 (0) | 2021.04.28 |
toggle / 드래그 (0) | 2021.04.27 |
(모바일) zIndex / ontransitioned 이벤트순서/ (0) | 2021.04.27 |
preventDefault 기본행위막기 / transition / setTimeout (0) | 2021.04.26 |
버블링 / toggle (0) | 2021.04.22 |
노드바꾸기 replaceChild / insertAdjacentElement / (0) | 2021.04.21 |
텍스트노드추가 append() / innerHTML / removeChild/ cloneNode() (0) | 2021.04.20 |