[vanilla JS] getting the elements
4689 단어 노마드코더vanilla jsjsjs
요소 가져오기
1. document.getElementById("id 이름")
--> id로 element(요소)를 가져올 수 있다.
💻EX
HTML)
...
<body>
<h1 class = "hello" id = "title"></h1>
<script src = app.js></script>
</body>
...
JS)
const title = document.getElementById("title")
title.innerText = "Got ya!"
console.log(title.id)
console.log(title.className)
--> (콘솔창)
title
hello
2. document.getElementsByClassName("class 이름")
, document.getElementsByTagName("tag" 이름)
-->
ⅰ) class/tag로 요소를 가져올 수 있다
ⅱ) 배열 값을 반환한다.
ⅲ) 많은 요소들을 불러와야 할 때 사용한다.
💻EX
document.getElementsByClassName("class" 이름)
document.getElementsByTagName("tag" 이름)
3. document.querySelector("CSS selector")
--> 요소를 css 방식으로 검색 가능하다.
💻EX
const title = document.querySelector(".hello h1")
console.log(title)
+ document.querySelectorAll()
: 모든 자식 요소를 가져다준다 (배열의 형태로)
Author And Source
이 문제에 관하여([vanilla JS] getting the elements), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@marvey-qween/vanilla-JS-getting-the-elements저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)