通用于ie和firefox的函数 GetCurrentStyle (obj, prop)
更新时间:2006年12月27日 00:00:00 作者:
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的用法与区别
相关文章
基于BootStrap与jQuery.validate实现表单提交校验功能
学习前台后台最开始接触的业务都是用户注册和登录,下面通过本文给大家介绍BootStrap与jQuery.validate实现表单提交校验功能,感兴趣的朋友一起学习吧2016-12-12js prototype 格式化数字 By shawl.qiu
js prototype 格式化数字 By shawl.qiu...2007-04-04浅析document.createDocumentFragment()与js效率
对于循环批量操作页面的DOM有很大帮助!利用文档碎片处理,然后一次性append,并且使用原生的javascript语句操作2013-07-07
最新评论