[WEB] DOM์ด๋?
๐ DOM์ด๋?
DOM์ Document Object Model์ ์ค์๋ง๋ก, ์น ํ์ด์ง์ ๋ฌธ์ ๊ตฌ์กฐ๋ฅผ ๊ฐ์ฒด๋ก ๋ํ๋ธ ํ๋ก๊ทธ๋๋ฐ ์ธํฐํ์ด์ค์ ๋๋ค.
์น ํ์ด์ง์ HTML ๋ฑ์ ์น ๋ฌธ์๋ฅผ ํธ๋ฆฌ ํํ๋ก ํํํ๊ณ ๊ฐ๊ฐ ์์๋ฅผ ๊ฐ์ฒด๋ก ์ทจ๊ธํฉ๋๋ค.
DOM์ ์น ํ์ด์ง์ ๋ด์ฉ, ๊ตฌ์กฐ, ์คํ์ผ ๋ฑ์ ๋์ ์ผ๋ก ์กฐ์ํ ์ ์๋ ๊ธฐ๋ฅ์ ์ ๊ณตํฉ๋๋ค.
๐ DOM ์์์ ์ ๊ทผํ๊ธฐ
โช ํ๋์ ๋ ธ๋ ์ ํ
- document.getElementById
// id๋ก ํ๋์ ์์๋ฅผ ์ ํํ๋ค.
const elem = document.getElementById("one");
// ํด๋์ค ์ดํธ๋ฆฌ๋ทฐํธ์ ๊ฐ์ ๋ณ๊ฒฝํ๋ค.
elem.className = "blue";
console.log(elem); // <li id="one" class="blue">Seoul</li>
console.log(elem.__proto__); // HTMLLIElement
console.log(elem.__proto__.__proto__); // HTMLElement
console.log(elem.__proto__.__proto__.__proto__); // Element
console.log(elem.__proto__.__proto__.__proto__.__proto__); // Node
- document.querySelector
// CSS ์
๋ ํฐ๋ฅผ ์ด์ฉํด ์์๋ฅผ ์ ํํ๋ค
const elem = document.querySelector("li.red");
// ํด๋์ค ์ดํธ๋ฆฌ๋ทฐํธ์ ๊ฐ์ ๋ณ๊ฒฝํ๋ค.
elem.className = "blue";
โช ์ฌ๋ฌ๊ฐ์ ๋ ธ๋ ์ ํ
- document.getElementsByClassName
- document.getElementsByTagName
- document.querySelectorAll
์ฐธ๊ณ
-
https://poiemaweb.com/js-dom
๐ฌ ์ต์ ๋๊ธ