想不想get新技能酷炫一下,今天图老师小编就跟大家分享个简单的通用于ie和firefox的函数 GetCurrentStyle (obj, prop)教程,一起来看看吧!超容易上手~
【 tulaoshi.com - Web开发 】
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://www.tulaoshi.com/n/20160219/1597579.html
看过《通用于ie和firefox的函数 GetCurrentStyle (obj, prop)》的人还看了以下文章 更多>>