문서의 선택한 두 판 사이의 차이를 보여줍니다.
다음 판 | 이전 판 | ||
wiki:javascript:javascript_note:queryselectorall [2021/05/26 11:50] emblim98 만듦 |
wiki:javascript:javascript_note:queryselectorall [2023/01/13 18:44] (현재) |
||
---|---|---|---|
줄 137: | 줄 137: | ||
문서에 %%class=" | 문서에 %%class=" | ||
<code javascript> | <code javascript> | ||
+ | < | ||
+ | <div class=" | ||
+ | A div element with class=" | ||
+ | </ | ||
+ | |||
+ | <div class=" | ||
+ | Another div element with class=" | ||
+ | </ | ||
+ | |||
+ | <p class=" | ||
+ | |||
+ | <p> | ||
+ | Click the button to find out how manu elements with class " | ||
+ | </p> | ||
+ | |||
+ | <button onclick=" | ||
+ | |||
+ | < | ||
+ | |||
+ | <p id=" | ||
+ | |||
+ | < | ||
+ | function myFunction() { | ||
+ | var x = document.querySelectorAll(" | ||
+ | document.getElementById(" | ||
+ | console.log(x); | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | </ | ||
</ | </ | ||
+ | \\ | ||
+ | ====Example==== | ||
+ | %%class=" | ||
+ | <code javascript> | ||
+ | < | ||
+ | < | ||
+ | .example { | ||
+ | border: 1px solid #000; | ||
+ | margin: 5px; | ||
+ | } | ||
+ | </ | ||
+ | </ | ||
+ | < | ||
+ | <div class=" | ||
+ | A div with class=" | ||
+ | <!-- red 배경색 적용 --> | ||
+ | </ | ||
+ | <div class=" | ||
+ | Another div with class-" | ||
+ | <!-- red 배경색 적용 --> | ||
+ | </ | ||
+ | <p class=" | ||
+ | < | ||
+ | < | ||
+ | <button class=" | ||
+ | < | ||
+ | < | ||
+ | function myFunction() { | ||
+ | var x = document.querySelectorAll(" | ||
+ | var i; | ||
+ | for (i = 0; i < x.length; i++) { | ||
+ | x[i].style.backgroundColor = " | ||
+ | } | ||
+ | console.log(x); | ||
+ | /* NodeList(5)[div.example, | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | </ | ||
+ | |||
+ | |||
+ | \\ | ||
+ | ====Example==== | ||
+ | 문서의 모든 %%< | ||
+ | <code javascript> | ||
+ | < | ||
+ | < | ||
+ | .example { | ||
+ | border: 1px solid #000; | ||
+ | margin: 5px; | ||
+ | } | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | |||
+ | <h1>A h1 element</ | ||
+ | |||
+ | < | ||
+ | |||
+ | <p>A p element</ | ||
+ | |||
+ | < | ||
+ | |||
+ | <div class=" | ||
+ | <p>A p element inside a div element.</ | ||
+ | </ | ||
+ | |||
+ | <p> | ||
+ | Click the button to change the background color of all p elements in the document. | ||
+ | <!-- red 배경색 적용 --> | ||
+ | </p> | ||
+ | |||
+ | <button onclick=" | ||
+ | |||
+ | < | ||
+ | |||
+ | < | ||
+ | function myFunction() { | ||
+ | var x = document.querySelectorAll(" | ||
+ | var i; | ||
+ | for (i = 0; i < x.length; i++) { | ||
+ | x[i].style.backgroundColor = " | ||
+ | } | ||
+ | console.log(x); | ||
+ | } | ||
+ | /* console.log(x); | ||
+ | /* Uncaught ReferenceError: | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | </ | ||
+ | |||
+ | \\ | ||
+ | ====Example==== | ||
+ | 문서에서 %%" | ||
+ | <code javascript> | ||
+ | < | ||
+ | < | ||
+ | a[target] { | ||
+ | background-color: | ||
+ | } | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | <p> | ||
+ | The CSS selector a[target] makes sure that all links with a target attribute gets a yellow background: | ||
+ | </p> | ||
+ | |||
+ | <a href=" | ||
+ | <a href=" | ||
+ | <a href=" | ||
+ | |||
+ | <p> | ||
+ | Click the button to add a red border to all links in the document with a target attribute. | ||
+ | </p> | ||
+ | |||
+ | <button onclick=" | ||
+ | |||
+ | < | ||
+ | |||
+ | < | ||
+ | function myFunction() { | ||
+ | var x = document.querySelectorAll(" | ||
+ | var i; | ||
+ | for (i = 0; i < x.length; i++) { | ||
+ | x[i].style.border = "10px solid red"; | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | </ | ||
+ | |||
+ | \\ | ||
+ | ====Example==== | ||
+ | 부모가 %%< | ||
+ | <code javascript> | ||
+ | < | ||
+ | < | ||
+ | div { | ||
+ | border: 1px solid #000; | ||
+ | margin-bottom: | ||
+ | } | ||
+ | </ | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | |||
+ | <div> | ||
+ | < | ||
+ | <p> | ||
+ | I am a p element, my parent is a div element. <!-- teal 배경색 적용됨 --> | ||
+ | </p> | ||
+ | </ | ||
+ | |||
+ | <div> | ||
+ | < | ||
+ | <p> | ||
+ | I am a p element, my parent is also a div element. <!-- teal 배경색 적용됨 --> | ||
+ | </p> | ||
+ | </ | ||
+ | |||
+ | <p> | ||
+ | Click the button to change the background color of every p element where the parent is a div element. | ||
+ | </p> | ||
+ | |||
+ | <button onclick=" | ||
+ | |||
+ | < | ||
+ | |||
+ | < | ||
+ | function myFuncion() { | ||
+ | var x = document.querySelectorAll(" | ||
+ | var i; | ||
+ | for (i = 0; i < x.length; i++) { | ||
+ | x[i].style.backgroundColor = " | ||
+ | } | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | </ | ||
+ | |||
+ | \\ | ||
+ | ====Example==== | ||
+ | 문서에 있는 모든 %%< | ||
+ | |||
+ | <code javascript> | ||
+ | < | ||
+ | |||
+ | <h1>A H1 element</ | ||
+ | |||
+ | <h2>A H2 element</ | ||
+ | |||
+ | < | ||
+ | |||
+ | <p>A p element</ | ||
+ | |||
+ | <p>A p element with a <span style=" | ||
+ | <!-- span에 red 배경색 적용됨 --> | ||
+ | <p> | ||
+ | Click the button to set the background color of all h2, div and span elements. | ||
+ | </p> | ||
+ | |||
+ | <button onclick=" | ||
+ | |||
+ | < | ||
+ | |||
+ | < | ||
+ | function myFunction() { | ||
+ | var x = document.querySelectorAll(" | ||
+ | var i; | ||
+ | for (i = 0; i < x.length; i++) { | ||
+ | x[i].style.backgroundColor = " | ||
+ | } | ||
+ | console.log(x); | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | </ | ||
+ | </ | ||