首頁 > web前端 > css教學 > 為什麼 JavaScript 中 `this.style[property]` 會回傳空字串?

為什麼 JavaScript 中 `this.style[property]` 會回傳空字串?

Mary-Kate Olsen
發布: 2024-12-07 00:17:14
原創
340 人瀏覽過

Why Does `this.style[property]` Return an Empty String in JavaScript?

JavaScript this.style[property] 傳回空字串:澄清

而this.style[property] 主要檢索應用的內聯樣式直接存取元素,有時會得到空字串。當未在元素的內聯樣式中明確設定相關屬性時,就會發生這種情況。

在提供的程式碼片段中:

function css(prop, value) {
  if (value == null) {
    return this.style[prop];
  }
  if (prop) {
    this.style[prop] = value;
  }
  return true;
}
登入後複製

呼叫 element.css("height") 時,您正在嘗試存取內聯高度屬性。但是,在提供的 HTML 中:

<div>
登入後複製

未定義內聯高度屬性。因此, this.style["height"] 傳回一個空字串。

要擷取計算的高度,其中包含來自外部或內聯樣式表的級聯樣式,您可以使用getCompulatedStyle() 方法:

const element = document.getElementById("test");
const style = getComputedStyle(element);
const height = style.height;
登入後複製

在這種情況下,高度將等於“100px”。

要解決初始程式碼中的問題,您可以修改css 函數如下:

function css(prop, value) {
  if (value == null) {
    const b = (window.navigator.userAgent).toLowerCase();
    let s;
    if (/msie|opera/.test(b)) {
      s = this.currentStyle;
    } else if (/gecko/.test(b)) {
      s = document.defaultView.getComputedStyle(this, null);
    }
    if (s[prop] != undefined) {
      return s[prop];
    }
    return this.style[prop];
  }
  if (prop) {
    this.style[prop] = value;
  }
  return true;
}
登入後複製

透過此修改,element.css("height") 將傳回“100px”,因為該函數現在也檢查計算樣式。

以上是為什麼 JavaScript 中 `this.style[property]` 會回傳空字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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