ホームページ >ウェブフロントエンド >jsチュートリアル >通用于ie和firefox的函数 GetCurrentStyle (obj, prop)_javascript技巧

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

WBOY
WBOYオリジナル
2016-05-16 19:22:091026ブラウズ
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 までご連絡ください。