手机
当前位置:查字典教程网 >编程开发 >Javascript教程 >js 动态修改css文件的方法
js 动态修改css文件的方法
摘要:_.find(document.styleSheets[4].cssRules,function(cssRule){if(cssRule.s...

_.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";

【js 动态修改css文件的方法】相关文章:

javascript实现动态改变层大小的方法

javascript实现行拖动的方法

JS选项卡动态替换banner图片路径的方法

js获取滚动距离的方法

jQuery实现html表格动态添加新行的方法

js禁止页面刷新与后退的方法

js实现字符串转日期格式的方法

javascript实现模拟时钟的方法

JS或jQuery获取ASP.NET服务器控件ID的方法

jQuery取消ajax请求的方法

精品推荐
分类导航