본문 바로가기
Java Script/DOM

JS] Manipulating HTML Element Attributes

by CodeMia 2021. 8. 22.

 

attributes란?

각 태그 이름(h1, input, a..) 안에 하늘색에 해당하는 부분이 attributes이다. 

 

 

<a> 태그 안에 뭐 있나 보기

document.querySelector("a");

 

 

<a> 태그 안에 있는 모든 attributes 검색하기 

<a> 태그 안에 1개의 href가 있다

document.querySelector("a").attributes;

 

 

 

href attribute에는 뭐 있나 보기 

document.querySelector("a").getAttribute("href");

 

 

구글 클릭했는데 네이버 나오게 하기 

href attribute 내용 바꾸기 

document.querySelector("a").setAttribute("href", "https://www.naver.com");
구글 클릭했는데
네이버가 나왔다

 

 

 

댓글