js 动态修改css文件用到了cssRule

前端之家收集整理的这篇文章主要介绍了js 动态修改css文件用到了cssRule前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

<div class="jb51code">
<pre class="brush: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不能直接使用下面的代码,否则不会生效

只能使用

原文链接:https://www.f2er.com/js/58033.html

猜你在找的JavaScript相关文章