23

JavaScript プラグインでこの getComputedStyle ポリフィルを見つけました

if (!computed) {
  window.getComputedStyle = function(el) {
    this.el = el;
    this.getPropertyValue = function(prop) {
      var re = /(\-([a-z]){1})/g;
      if (prop === "float") {
        prop = "styleFloat";
      }
      if (re.test(prop)) {
        prop = prop.replace(re, function () {
          return arguments[2].toUpperCase();
        });
      }
      return el.currentStyle[prop] ? el.currentStyle[prop] : null;
    };
    return this;
  };
}

getcomputedstyle(); に相当する jQuery はありますか?

4

1 に答える 1

42

.css()の getter バージョンを使用できます。

ドキュメントから

.css() メソッドは、最初に一致した要素からスタイル プロパティを取得する便利な方法です。特に、ブラウザがこれらのプロパティのほとんどにアクセスする方法が異なることを考えると (標準ベースのブラウザでは getComputedStyle() メソッドと currentStyle および runtimeStyle を使用) Internet Explorer のプロパティ) と、ブラウザーが特定のプロパティに使用するさまざまな用語。

お気に入り

$(el).css('color')
于 2013-10-02T13:01:12.707 に答える