js動的にcssファイルを変更するにはcssRuleを使用します

923 ワード


 _.find(document.styleSheets[4].cssRules,function(cssRule){ 
if(cssRule.selectorText && cssRule.selectorText.indexOf(".navbar-fixed-top2")>-1){ 
cssRule.style.position=""; 
cssRule.style.top = "0px"; 
} 
if(cssRule.selectorText && cssRule.selectorText.indexOf("#pageIndi_content, #page1_l1_content, #page_appList") >-1){ 
cssRule.style.padding = "0px"; 
} 
if(cssRule.selectorText && cssRule.selectorText.indexOf("#page1_index_content") >-1){ 
cssRule.style.padding = "0px"; 
} 
});

ループ用underscoreは、cssRuleを使用して下のコードを直接使用することはできません.そうしないと有効になりません.

cssRule.style=" left: 0;position:'';right: 0; top: 0px;z-index: 1031;";

使用可能

cssRule.style.padding = "0px";