IE9 の 3 つの条件に基づいて集約されたフッターの配置が変更されたため、グリッドビュー フッターのスタイルのスタイルを変更しようとしていますが、未定義のエラーが引き続き表示されます。スタイルを変更するにはどうすればよいですか?
.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;");