首页 > Web开发 > 详细

js 动态修改css文件

时间:2014-08-04 21:46:58      阅读:514      评论:0      收藏:0      [点我收藏+]
_.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文件

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!