通用于ie和firefox的函数 GetCurrentStyle (obj, prop)
作者:
通用于ie和firefox的函数 GetCurrentStyle (obj, prop)
function GetCurrentStyle (obj, prop) { if (obj.currentStyle) { return obj.currentStyle[prop]; } else if (window.getComputedStyle) { prop = prop.replace (/([A-Z])/g, "-$1"); prop = prop.toLowerCase (); return window.getComputedStyle (obj, "").getPropertyValue(prop); } return null; }
代码来自于http://tvweek.com/javascripts/default.js
您可能感兴趣的文章:
- (currentStyle)javascript为何有时用style得不到已设定的CSS的属性
- javascript 读取内联之外的样式(style、currentStyle、getComputedStyle区别介绍)
- style、 currentStyle、 runtimeStyle区别分析
- 获取css样式表内样式的js函数currentStyle(IE),defaultView(FF)
- getComputedStyle与currentStyle获取样式(style/class)
- 元素未显示设置width/height时IE中使用currentStyle获取为auto
- JS获取CSS样式(style/getComputedStyle/currentStyle)
- 前端学习笔记style,currentStyle,getComputedStyle的用法与区别