在JavaScript 中取得HTML 元素的樣式值
從已使用
跨瀏覽器相容性
IE 使用element.currentStyle 屬性,而其他瀏覽器實作DOM 層級2 document.defaultView.getCompulatedStyle(el, null).getValue (styleProp) 方法。為了處理這種差異,提供了一個跨瀏覽器函數:
function getStyle(el, styleProp) { var value, defaultView = (el.ownerDocument || document).defaultView; // W3C standard way: if (defaultView && defaultView.getComputedStyle) { // Sanitize property name to CSS notation (e.g., font-Size) styleProp = styleProp.replace(/([A-Z])/g, "-").toLowerCase(); return defaultView.getComputedStyle(el, null).getPropertyValue(styleProp); } else if (el.currentStyle) { // IE // Sanitize property name to camelCase styleProp = styleProp.replace(/\-(\w)/g, function(str, letter) { return letter.toUpperCase(); }); value = el.currentStyle[styleProp]; // Convert other units to pixels on IE if (/^\d+(em|pt|%|ex)?$/i.test(value)) { return (function(value) { var oldLeft = el.style.left, oldRsLeft = el.runtimeStyle.left; el.runtimeStyle.left = el.currentStyle.left; el.style.left = value || 0; value = el.style.pixelLeft + "px"; el.style.left = oldLeft; el.runtimeStyle.left = oldRsLeft; return value; })(value); } return value; } }
程式碼片段的範例用法
取得所提供程式碼片段中的寬度值,使用以下內容:
var boxWidth = getStyle(document.getElementById("box"), "width");
以上是如何在不使用外部程式庫的情況下在 JavaScript 中取得 HTML 元素的樣式值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!