js 動(dòng)態(tài)修改css文件用到了cssRule

字號(hào):


    js 動(dòng)態(tài)修改css文件,循環(huán)用的underscore,在使用cssRule只能使用cssRule.style.padding=0px,詳細(xì)示例如下
    _.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";
    }
    });
    循環(huán)用的underscore,在使用cssRule不能直接使用下面的代碼,否則不會(huì)生效
    view sourceprint?1 cssRule.style=" left: 0;position:'';right: 0; top: 0px;z-index: 1031;";
    只能使用
    view sourceprint?1 cssRule.style.padding = "0px";