网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的考试资料:

 

标题 js 动态修改css文件用到了cssRule
内容
    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不能直接使用下面的代码,否则不会生效
    view sourceprint?1 cssRule.style=" left: 0;position:'';right: 0; top: 0px;z-index: 1031;";
    只能使用
    view sourceprint?1 cssRule.style.padding = "0px";
随便看

 

在线学习网考试资料包含高考、自考、专升本考试、人事考试、公务员考试、大学生村官考试、特岗教师招聘考试、事业单位招聘考试、企业人才招聘、银行招聘、教师招聘、农村信用社招聘、各类资格证书考试等各类考试资料。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/18 5:31:11