首頁 > web前端 > js教程 > 如何在不使用庫的情況下從 JavaScript 中的 HTML 元素檢索樣式值?

如何在不使用庫的情況下從 JavaScript 中的 HTML 元素檢索樣式值?

Susan Sarandon
發布: 2024-12-01 21:05:15
原創
128 人瀏覽過

How Can I Retrieve Style Values from HTML Elements in JavaScript Without Using Libraries?

在沒有庫的情況下從JavaScript 檢索HTML 元素的樣式值

透過JavaScript 存取HTML 元素的樣式時,您可能會面臨檢索方面的挑戰由

要取得計算的樣式值,包括

function getStyle(el, styleProp) {
  var value, defaultView = (el.ownerDocument || document).defaultView;
  // W3C standard way:
  if (defaultView && defaultView.getComputedStyle) {
    // sanitize property name to css notation
    // (hypen separated words eg. 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;
  }
}
登入後複製

用法:

// Getting width style value
var width = getStyle(document.getElementById("box"), "width");

// Getting color style value (may differ between browsers)
var color = getStyle(document.getElementById("box"), "color");
登入後複製

以上是如何在不使用庫的情況下從 JavaScript 中的 HTML 元素檢索樣式值?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板