获取 修改 CSS 样式

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取 修改 CSS 样式相关的知识,希望对你有一定的参考价值。

内联(style里的)样式
element.style.color
element.style.getPropertyValue("color")
 
非内联样式
window.getComputedStyle(elem1,null).getPropertyValue("backgroundColor");     (getComputedStyle(elem1,null)   第二个参数null用于获取伪类样式(":after"))
document.defaultView.getComputedStyle(elem1,null).getPropertyValue("backgroundColor");  
(使用defaultView可能一是人们不太乐意在window上专门写个东西,二是让API在Java中也可用)
ie(6-8)下需要使用元素方法实现:
object.currentStyle.backgroundColor    (   IE不支持DOM的style对象下的方法 ,例如element.style.removeProperty("color")   )
computed style都是只读的
 
 
下面这种可以获取<style>标签里面的样式
document.styleSheets[0].cssRules  ||  document.styleSheets[0].rules
 
添加多条样式到style属性:
element.style.cssText  = element.style.cssText + ";" + addcss(需要添加的样式);
(语法  element.style.cssText="width:200px;height:70px;display:bolck";  ) 
 
 
淘宝:
var styleEl = document.createElement("style");
    document.getElementsByTagName("head")[0].appendChild(styleEl);
    if (styleEl.styleSheet) {
        if (!styleEl.styleSheet.disabled) {                                                        //判断样式是否添加到document
            styleEl.styleSheet.cssText = cssText;
        }
    } else {
        try {
            styleEl.innerhtml = cssText
        } catch(e) {
            styleEl.innerText = cssText;
        }
    }

以上是关于获取 修改 CSS 样式的主要内容,如果未能解决你的问题,请参考以下文章

js如何更改css样式,

css CSS基于Core CSS scaffold for Scholarly Markdown HTML v0.1.2,修改为获取表乳胶样式。

JS获取元素修改元素/css样式/标签属性简单事件数据类型

解析js如何获取css样式

JS 动态修改CSS 样式方法/全局

原生JS获取及设置CSS样式-1.行内样式