[Javascript] 웹 페이지의 근육 심기 - DOM 요소 속성 값 변경
·
Front/javascript
▶ 요소 속성값 변경 ① 요소.attribute = 새 값; ② 요소.setAttribute ("속성명","값") document.getElementById( 'test' ).setAttribute( 'href', 'https://henniee.tistory.com' ); 아이디가 test인 요소를 찾아 그 요소의 속성을 href 로 바꾸고 값은 'https://henniee.tistory.com' 이것으로 할당하라 hennie t-story ③ 요소.getAttribute ("속성명"); //속성값 반환 var add = document.getElementById('test').getAttribute('href'); 아이디가 test인 요소의 속성 href 를 골라내 add 에 할당. 그리고선 add ..
해니01_15
'자바스크립트속성값' 태그의 글 목록