javascript로 html에 인라인 스타일로 들어가 있는 style을 삭제하려고 찾아보니
여러가지 다양한 방법을 찾을 수 있었다.
아래 코드들을 통해 정리해봄.
1. removeProperty()
document.querySelector( 'button' ).onclick = function(){
const obj = document.getElementById( 'container' );
obj.style.removeProperty( 'border' );
}
2. 빈 문자열
document.querySelector( 'button' ).onclick = function() {
const obj = document.getElementById( 'container' );
obj.style.border = '';
}
3. removeAttribute()
document.querySelector( 'button' ).onclick = function() {
document.getElementById('container' ).removeAttribute( 'style' );
}
728x90
반응형
'WWWEB > Script' 카테고리의 다른 글
타입스크립트 핸드북, 윈터루드님의 (0) | 2023.07.10 |
---|---|
[ js ] 스크립트 동적 생성하기 (0) | 2023.04.25 |
[ js ] defer vs async (0) | 2023.04.25 |
[ js ] 크로스도메인에서 iframe 높이값 자동 처리하기 (0) | 2023.03.02 |
[자바스크립트] Keycode 이벤트 코드값 (1) | 2022.12.28 |
slick slider 사용법과 옵션 (0) | 2022.12.28 |
[js] 시크릿 모드 체크하기 예시 (0) | 2022.12.22 |
[js] substr() 사용은 그만. (0) | 2022.12.20 |
댓글