首頁 >web前端 >js教程 >通用于ie和firefox的函数 GetCurrentStyle (obj, prop)_javascript技巧

通用于ie和firefox的函数 GetCurrentStyle (obj, prop)_javascript技巧

WBOY
WBOY原創
2016-05-16 19:22:091022瀏覽
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
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn