javascript <IE9的getComputedStyle
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript <IE9的getComputedStyle相关的知识,希望对你有一定的参考价值。
if (!window.getComputedStyle) {
window.getComputedStyle = function(el, pseudo) {
this.el = el;
this.getPropertyValue = function(prop) {
var re = /(\-([a-z]){1})/g;
if (prop == 'float') prop = 'styleFloat';
if (re.test(prop)) {
prop = prop.replace(re, function () {
return arguments[2].toUpperCase();
});
}
return el.currentStyle[prop] ? el.currentStyle[prop] : null;
}
return this;
}
}
以上是关于javascript <IE9的getComputedStyle的主要内容,如果未能解决你的问题,请参考以下文章
使用 JavaScript 在 IE9 中获取数据列表选项
js获取ID值出错
JavaScript基础 window.innerWidth 获取网页的宽度与高度 IE9,火狐可以用
csharp GetComments.cs
csharp GetComments.cs
vbscript GetComments.vb