getComputedStyle与currentStyle获取样式(style/class)
用document.getElementById(‘element').style.xxx获取行内样式
window.getComputedStyle(element,null).color返回的是一个样式对象,有很多值。可以获取外联CSS样式和行内样式,但是它不兼容IE,而且是只读的,不能设置样式
element.currentStyle.color是IE的写法
所以可以写成:
return window.getComputedStyle ? window.getComputedStyle(obj,null).color : obj.currentStyle.color;
color它返回的是rgb(255,255,255)
jquery的css()方法就是用了document.defaultView.getComputedStyle相当于window.getComputedStyle
写成这样是为了兼容FF :当使用Firefox 3.6时,其frame中需要使用document.defaultView去获取window对象,才能使用其getComputedStyle方法
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】凌霞软件回馈社区,博客园 & 1Panel & Halo 联合会员上线
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步