我正在尝试更改 gridview 页脚样式的样式,因为基于 IE9 中的三个条件更改了聚合页脚对齐方式,但它只是不断向我抛出未定义的错误,我的问题是如何更改样式任何帮助表示赞赏:
.rgFooter, .rgFooterDiv
{
background: none !important;
background-color: transparent !important;
width: 100% !important;
/*max-width:779px;*/
}
到:
.rgFooter, .rgFooterDiv
{
background: none !important;
background-color: transparent !important;
width: 100% auto!important;
}
只使用 javascript 没有 JQuery。到目前为止我尝试过:
var mydiv = document.getElementById("mygrid").className;
mydiv.setAttribute("style", "width: 100% auto !important; background: none !important; background-color: transparent !important;");