标签: javascript
是否可以使用JavaScript覆盖Css类? 例如:
为.iframe样式classe添加背景。
答案 0 :(得分:-1)
更改STYLE属性
var iframe = document.querySelector('.iframe'); iframe.style['marginBottom'] = "200px";
更改CLASS属性
iframe['className'] = "myClass";