首頁 >web前端 >css教學 >如何在不使用外部程式庫的情況下在 JavaScript 中取得 HTML 元素的樣式值?

如何在不使用外部程式庫的情況下在 JavaScript 中取得 HTML 元素的樣式值?

Patricia Arquette
Patricia Arquette原創
2024-12-25 00:21:10234瀏覽

How Can I Get an HTML Element's Style Values in JavaScript Without Using External Libraries?

在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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn