我在chrome浏览器开发者模式中手动更改了style属性,该属性具有所需的效果。输入
element.style {
width: 900px;
}
之后,被操纵的div显示为:
<div id="rte-savebar" class="aui-toolbar" style="width: 900px;">
现在我正在使用此命令尝试使用javascript的相同效果:
document.getElementById("rte-savebar").style="width:900px;";
似乎根本没有效果。
我需要做些什么来改变javascript中的宽度?
答案 0 :(得分:9)
document.getElementById("rte-savebar").style.width = "900px";
答案 1 :(得分:4)
你应该通过专门访问width属性来做到这一点,试试这个:
document.getElementById("rte-savebar").style.width="900px";