document.getElementById("boxrightdefalut").style.height = /**这里的值是(auto !important),该怎么写**/;
document.getElementById("boxrightdefalut").style.height="50px"
这样写不行,我想写 "height:auto"
@严文Live: document.getElementById("main").style.height="auto";
@chenping2008: 我也这样写过,也没反应,看不到样式
@严文Live: 没有效果,也许在你的页面,定义auto就是该那个样子显示
@chenping2008: 这个写法是对的!
document.getElementById("boxrightdefalut").style="height =10";
这样写不行,我想写 "height:auto"
写个样式class
然后前台给控件切换class
document.getElementById("boxrightdefalut").style="height:10px";
这样写不行,我想写 "height:auto"