js 动态修改css文件用到了cssRule
更新时间:2014年08月20日 10:49:13 投稿:whsnow
js 动态修改css文件,循环用的underscore,在使用cssRule只能使用cssRule.style.padding=0px,详细示例如下
_.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";
相关文章
移动端使用localStorage缓存Js和css文的方法(web开发)
这篇文章主要介绍了web移动端使用localStorage缓存Js和css文的方法,非常不错,具有参考借鉴价值,需要的朋友可以参考下2016-09-09javascript设计模式 – 工厂模式原理与应用实例分析
这篇文章主要介绍了javascript设计模式 – 工厂模式,结合实例形式分析了javascript工厂模式基本概念、原理、定义、应用场景及相关操作注意事项,需要的朋友可以参考下2020-04-04Javascript和jquery在selenium的使用过程
这篇文章主要介绍了Javascript和jquery在selenium的使用过程,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友可以参考下2019-10-10
最新评论