js 动态修改css文件

_.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";



js 动态修改css文件,古老的榕树,5-wow.com

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。