getElementById ์ querySelector ๋น๊ต
๐ getElementById ์ querySelector ๋น๊ต
getElementById
์ querySelector
์ ๊ณตํต์ ์ ์๋ฆฌ๋จผํธ๋ฅผ ๊ฒ์ํด์ ๋ฐํํ๋ค๋ ๊ฒ์
๋๋ค.
ํ์ง๋ง ๋์ ์ฌ์ฉ๋ฒ์ ๋ค๋ฅด๋ฉฐ ์ฌ์ฉํ๋ ์ํฉ์์ ์ฐจ์ด์ ์ ๋๋ฌ๋ ๋๋ค.
๐ getElementById์ querySelector์ ์ฐจ์ด์
getElementById
- id๋ฅผ ํตํด ์๋ฆฌ๋จผํธ๋ฅผ ๋ฐํํ๋ค.
- ๋ง์ฝ document์ ํด๋น id๊ฐ ์๋ค๋ฉด
null
์ ๋ฐํํ๋ค.
querySelector
- selector์ ๊ตฌ์ฒด์ ์ธ ๊ทธ๋ฃน๊ณผ ์ผ์นํ๋ document์ ์ฒซ๋ฒ์งธ ์๋ฆฌ๋จผํธ๋ฅผ ๋ฐํํ๋ค.
- ์ผ์นํ๋ ์์๊ฐ ์๋ค๋ฉด
null
์ ๋ฐํํ๋ค.
โ ์์
<form id="userForm">
<input id="username" type="text" value="Guilherme">
</form>
getElementById
๋ก username
์ ๊ฐ์ ธ์ฌ ๋:
var username = document.getElementById("username");
querySelector
๋ก username
์ ๊ฐ์ ธ์ฌ ๋:
var username = document.querySelector("#userForm #username");
=> ๊ฒฐ๊ณผ๋ ๊ฐ์ง๋ง querySelector
๋ก ๊ฐ์ ธ์ฌ ๋ ๋ ๊ตฌ์ฒด์ ์ด๊ณ ํ์ ์ ์ด๋ค.
๐ querySelectorAll vs selectElementByClassName
ํ๋๊ฐ ์๋๋ผ ์ฌ๋ฌ๊ฐ์ ์์๋ฅผ ํ๋์ ์ด๋ฆ์ผ๋ก ํ๋ฒ์ ์ป๊ณ ์ถ์ ๋ ์ฌ์ฉํ๋ ๋ฐฉ๋ฒ์ด๋ค.
โ ์์
<form id="productForm">
<input id="productOne" class="product" type="text" value="Product 1" />
<input id="productTwo" class="product" type="text" value="Product 1" />
<input id="productThree" class="product" type="text" value="Product 1" />
</form>
getElementByClassName
์ผ๋ก ๊ฐ์ ธ์ฌ ๋: HTMLCollection
์ ๋ฆฌํด
var products = document.getElementByClassName("product");
querySelectorAll
๋ก ๊ฐ์ ธ์ฌ ๋: NodeList
์ ๋ฆฌํด
var products = document.querySelectorAll("#productForm .product");
๋๋ค ์ธ๋ฑ์ค๋ฅผ ์ ๊ณตํด ์ธ๋ฑ์ค ๋ฒํธ๋ก ์ ๊ทผ์ด ๊ฐ๋ฅํ์ง๋ง,
HTMLCollection
ํญ๋ชฉ์ name
๊ณผ id
์์ฑ์ผ๋ก๋ ์ ๊ทผํ ์ ์๋ค.
์๋ฆฌ๋จผํธ์ ์ ๊ทผํ ๋ ๋ฐฉ๋ฒ์ด ๋๊ฐ์ง๊ฐ ์์ด ์ด๋ค ์ํฉ์ ์ด๋ ๊ฒ์ ์ฌ์ฉํ๋์ง ๊ถ๊ธํด์ ์ ๋ฆฌ๋ฅผ ์์ํ๋ค.
๊ตฌ์ฒด์ ์ผ๋ก ์๋ฆฌ๋จผํธ๋ฅผ ์ ํํ๊ณ ์ถ๋ค๋ฉด querySelector
๋ฅผ,
์ข๋ ๋น ๋ฅธ ์ฑ๋ฅ์ผ๋ก ์ ๊ทผํ๊ณ ์ถ๋ค๋ฉด getElementById
๋ฅผ ์ฌ์ฉํ๋ ๊ฒ์ด ์ข๋ค.
๐ฌ ์ต์ ๋๊ธ