본문 바로가기
JS

태그의 특정속성만 골라서 업데이트 _ attributes

by 율✌️ 2022. 5. 25.
<a href="https://www.google.com">Google</a>

 

a태그에 있는 속성을 모두 보고싶을때

document.querySelector('a').attributes

 

a태그에 있는 특정속성을 보고싶을때

document.querySelector('a').getAttribute('href')

                                                 태그이름                          속성이름

 

a태그에 있는 특정속성을 바꾸고 싶을때

document.querySelector('a').setAttributes('href','https://www.naver.com')

                                                  태그이름                           속성이름         바꾸고자하는 내용

'JS' 카테고리의 다른 글

HTML과 연동시키기  (0) 2022.05.26
랜덤숫자 구하기  (0) 2022.05.26
innerHTML VS textContent  (0) 2022.05.25
class 추가/삭제_classList.add/remove/toggle  (0) 2022.05.25
HTML 내부요소 변경 _ getElementById  (0) 2022.05.20