码迷,mamicode.com
首页 > Web开发 > 详细

js 动态修改css文件

时间:2014-08-04 21:46:58      阅读:363      评论:0      收藏:0      [点我收藏+]

标签:javascript   css   js   

_.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文件,布布扣,bubuko.com

js 动态修改css文件

标签:javascript   css   js   

原文地址:http://blog.csdn.net/zml6308/article/details/38373081

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!