setAttribute( ) 메서드 / getAttribute( ) 메서드 / removeAttribute( ) 메서드
: 메소드는 속성값을 변경시키는 메서드이다.
사용방법
// 속성 접근하기
새로운객체명.getAttribute("href")
console.log(link.getAttribute("href"))
// 속성 수정하기
새로운 객체명.setAttribute("속성노드명",새로운속성값"):
link.setAttribute("href","https://www.naver.com")
// 속성 삭제하기
새로운객체명.removeAttribute("href")
반응형
'javascript' 카테고리의 다른 글
include( ),indexOf( ) 함수 string 특정 문자 위치 찾기 함수 (0) | 2024.03.06 |
---|---|
함수 선언식, 표현식 차이 : 호이스팅 (0) | 2024.03.04 |
replace( ), 속성변경 replace메서드가 뭐야 사용법 (0) | 2024.02.29 |
concat( ), spread 연산자 배열 합치기는 어떻게해? (0) | 2024.02.29 |
localstorge , setItem , getItem , removeItem, stringify , parse 가뭐야 사용법 (0) | 2024.02.28 |