js 动态修改css文件用到了cssRule_javascript技巧
程序员文章站
2022-04-03 17:20:15
...
_.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";
上一篇: 前端用nodejs能做什么
下一篇: asp与php区别是什么?
推荐阅读
-
动态加载js、css等文件跨iframe实现_javascript技巧
-
javascript实现动态导入js与css等静态资源文件的方法_javascript技巧
-
动态加载js、css等文件跨iframe实现_javascript技巧
-
动态调用CSS文件的JS代码_javascript技巧
-
js 动态修改css文件的方法_javascript技巧
-
javascript实现动态导入js与css等静态资源文件的方法_javascript技巧
-
js 动态修改css文件的方法_javascript技巧
-
动态调用CSS文件的JS代码_javascript技巧
-
动态加载js和css(外部文件)_javascript技巧
-
如何实现JavaScript动态加载CSS和JS文件_javascript技巧