CSS 스타일 관련 인터페이스인 stylesheet.insertRule 또는 stylesheet.addRule을 사용하세요. 둘 다 CSS 스타일을 동적으로 삽입할 수 있습니다. 호환성은 ie9+와 좋습니다.
stylesheet.insertRule或者stylesheet.addRule 这两个都可以动态插入css样式 兼容性还可以 ie9+
比如
// https://developer.mozilla.org/en-US/docs/Web/API/CSSStyleSheet/insertRule
myStyle.insertRule("#blanc { color: white }", 0);
需要删除的时候还有deleteRule和removeRule예를 들어
으아아아
🎜삭제해야 할 경우에는 deleteRule, removeRule 두 가지 방법이 있습니다. 관련 정보를 확인할 수 있습니다🎜
이 방법 밖에 생각이 안나네요.
으아아아CSS 스타일 관련 인터페이스인
stylesheet.insertRule
또는stylesheet.addRule
을 사용하세요. 둘 다 CSS 스타일을 동적으로 삽입할 수 있습니다. 호환성은 ie9+와 좋습니다.stylesheet.insertRule
或者stylesheet.addRule
这两个都可以动态插入css样式 兼容性还可以 ie9+比如
需要删除的时候还有
으아아아 🎜삭제해야 할 경우에는deleteRule
和removeRule
예를 들어deleteRule
,removeRule
두 가지 방법이 있습니다. 관련 정보를 확인할 수 있습니다🎜[].forEach.call(document.querySelectorAll('*'),function(a){
a.style.color = 'red';
})