Javascript|jQuery를 사용하여 특정 인라인 스타일 제거 HTML에 다음 코드가 있습니다. hello world 그리고 내 외부 CSS에 있는 것: #foo{ font-size:11pt; font-family:arial; color:#000; } 모두 제거합니다.font-size그리고.font-family에서style속성, 그러나 그렇지 않습니다.color그리고 다른 것들은 외부 css로 설정됩니다. 예상 결과: hello world 이미 시도한 항목: $('#foo').removeAttr('style'); // That removes all inline $('#foo').css('font-family',''); // That remove the css setted too jQuery를 사용하..