개발자의 끄적끄적

[javascript/jquery] jquery remove body style example / jquery body 스타일 전체 제거하는 방법 본문

개발/javascript & jquery

[javascript/jquery] jquery remove body style example / jquery body 스타일 전체 제거하는 방법

효벨 2021. 9. 12. 02:00
728x90
반응형

[javascript/jquery] jquery remove body style example / jquery body 스타일 전체 제거하는 방법

 

 

jquery 를 사용하다 보면

 

특정 상황에 따라서

 

body 태그 안에 있는

 

style 을 없애야 하는 경우가 있습니다.

 

그럴때는 아래와 같이

 

removeAttr 을 사용하시면 됩니다.

 

$("body").removeAttr("style");

 

body 에 removeAttr 을 사용하는데 style 을 입력해주면

 

style 속성이 전부 제거 됩니다!

 

참고들 하세요!

반응형
Comments