반응형
Notice
Recent Posts
Recent Comments
Link
«   2025/05   »
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Archives
Today
Total
관리 메뉴

taenyLog

Document : 속성 Attributes 본문

Web

Document : 속성 Attributes

taenyLog 2023. 9. 27. 10:27
반응형

document.querySelector(' ')

document.querySelector(' # ') --> id검색으로 더 세세한 작업 가능

 

const firstLink = document.querySelector('a')

firstLink.href ---> 직접 엑세스하는 경우에는 자바스크립트를 거친다.  따라서 아래의 결과값과  달리 앞에 file이 불는다.

> "file:///wiki/List_of_chicken_breeds"

 

firstLink.getAttribute('href' ) ---> getAttribute를 사용하면 HTML에서 직접 가져오게된다.

> "/wiki/List_of_chicken_breeds"

 

setAttribute( name, value) 

const button = document.querySelector("button");

button.setAttribute("name", "helloButton");

name의 속성값을 helloButton으로 변경한다.

반응형