标签:设置 current ted console window style com div 写法
1 一般情况是用style直接获取css信息但是style只能获取到卸载行内的样式外链的和嵌入的样式会获取不到 2
2.5 用下面方法获取外链和嵌入的css样式 3 这种方法只能用于读取 4 window.getComputedStyle(obj,‘伪类‘)[property] 5 6 getComputedStyle方法是ie所不支持的 7 正如上面提到的getComputedStyle方法是只读的,只能获取样式,不能设置;而element.style能读能写,能屈能伸 8 9 10 obj.currentStyle[property] 11 currentStyle这个是ie支持的 12 13 下面兼容写法 14 var font_size =window.getComputedStyle(text,null)[‘fontSize‘]||text.currentStyle[‘fontSize‘]; 15 console.log(font_size)
标签:设置 current ted console window style com div 写法
原文地址:http://www.cnblogs.com/lyWebstrat/p/6846765.html