如何實作javascript精確取得元素css屬性值?當處理DOM 元素的CSS 屬性時,我們經常會遇到一個問題:明明頁面上已經定義了CSS 屬性值,但在獲取的時候卻為空,這是因為任何樣式表文件或內聯CSS 預設的樣式資訊並不能可靠地反映在style 屬性上,本文向你介紹準確取得指定元素CSS 屬性值的方法。
Javascript:
Example Source Code
[www.downcodes.com] <script type="text/javascript">
function getStyle( elem, name )
{
//如果該屬性存在於style[]中,則它最近被設定過(且就是當前的)
if (elem.style[name])
{
return elem.style[name];
}
//否則,嘗試IE的方式
else if (elem.currentStyle)
{
return elem.currentStyle[name];
}
//或W3C的方法,如果存在的話
else if (document.defaultView && document.defaultView.getComputedStyle)
{
//它使用傳統的"text-Align"風格的規則書寫方式,而不是"textAlign"
name = name.replace(/([AZ])/g,"-$1");
name = name.toLowerCase();
//取得style物件並取得屬性的值(如果存在的話)
var s = document.defaultView.getComputedStyle(elem,"");
return s && s.getPropertyValue(name);
//否則,就是在使用其它的瀏覽器
}
else
{
return null;
}
}
</script>