使用Javascript跨浏览器(IE8-)getComputedStyle?

IT技术 javascript internet-explorer cross-browser styles
2021-03-12 17:34:31

由于IE8不支持getComputedStyle,我们只能使用currentStyle. 但是,它不会返回某些属性的真实“计算”值。

例如:

<style type="text/css">
#div {/* no properties are defined here */}
</style>
<div id="div">div</div>
// returns "medium" instead of 0px
document.getElementById('div').currentStyle.borderLeftWidth

// returns "auto" instead of 0px
document.getElementById('div').currentStyle.marginLeft

// returns "undefined" instead of 1
document.getElementById('div').currentStyle.opacity

有没有人在不使用 jQuery 或其他 Javascript 库的情况下为所有属性提供跨浏览器解决方案?

5个回答

这是一个用于获取计算样式的跨浏览器函数...

getStyle = function (el, prop) {
    if (typeof getComputedStyle !== 'undefined') {
        return getComputedStyle(el, null).getPropertyValue(prop);
    } else {
        return el.currentStyle[prop];
    }
}

您可以将其存储为对象中的实用程序,或者仅按提供的方式使用它。这是一个示例演示!

// Create paragraph element and append some text to it
var p = document.createElement('p');
p.appendChild(document.createTextNode('something for fun'));

// Append element to the body
document.getElementsByTagName('body')[0].appendChild(p);

// Set hex color to this element
p.style.color = '#999';

// alert element's color using getStyle function
alert(getStyle(p, 'color'));

检查此演示以查看其实际效果:

这不能回答问题。问题要求“所有属性”的跨浏览器解决方案,即使是问题中提到的“currentStyle”不返回实际计算值的解决方案。
2021-05-02 17:34:31
对于像这样的道具,这将失败,backgroundColor因为getPropertyValue需要 CSS 属性名称,但将currentStyle其作为驼峰式版本。单线更换:return (typeof getComputedStyle !== 'undefined' ? getComputedStyle(el, null) : el.currentStyle)[prop];
2021-05-04 17:34:31

您不想使用 jquery,但没有什么可以阻止您查看代码并查看他们如何处理它:-)

在 jquery 代码中,有一个关于此评论的参考,似乎很重要(另请阅读整篇文章)。这是应该处理您的问题的 jquery 代码:

else if ( document.documentElement.currentStyle ) {
    curCSS = function( elem, name ) {
        var left, rsLeft,
            ret = elem.currentStyle && elem.currentStyle[ name ],
        style = elem.style;

    // Avoid setting ret to empty string here
    // so we don't default to auto
    if ( ret == null && style && style[ name ] ) {
        ret = style[ name ];
    }

    // From the awesome hack by Dean Edwards
    // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291

    // If we're not dealing with a regular pixel number
    // but a number that has a weird ending, we need to convert it to pixels
    // but not position css attributes, as those are proportional to the parent element instead
    // and we can't measure the parent instead because it might trigger a "stacking dolls" problem
    if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) {

        // Remember the original values
        left = style.left;
        rsLeft = elem.runtimeStyle && elem.runtimeStyle.left;

        // Put in the new values to get a computed value out
        if ( rsLeft ) {
            elem.runtimeStyle.left = elem.currentStyle.left;
        }
        style.left = name === "fontSize" ? "1em" : ret;
        ret = style.pixelLeft + "px";

        // Revert the changed values
        style.left = left;
        if ( rsLeft ) {
            elem.runtimeStyle.left = rsLeft;
        }
    }

    return ret === "" ? "auto" : ret;
};
}
万一其他人想知道,rnumnonpx = new RegExp( "^(" + core_pnum + ")(?!px)[a-z%]+$", "i" );. 完整的独立源可以在这里找到:stackoverflow.com/questions/17884653
2021-05-11 17:34:31

代替 :

getComputedStyle !== 'undefined'

它应该是 :

typeof getComputedStyle !== 'undefined'

否则它永远不会工作。

这不适用于所有样式,但适用于尺寸(这是我需要的)。

不要试图猜测应用了哪些样式,只需使用盒状元素四个边中每一个的像素位置来计算尺寸。这也将适用于 IE 5 和 FF 3。

height = elem.getBoundingClientRect().bottom - elem.getBoundingClientRect().top;
width = elem.getBoundingClientRect().right - elem.getBoundingClientRect().left;

另请参阅:getBoundingClientRect 很棒

如果这仍然不适合您,请查看我放在一起用于计算盒子内部宽度的小提琴它使用以下作为 getComputedStyle 的垫片:

/**
 * getComputedStyle function for IE8
 * borrowed from:
 * http://missouristate.info/scripts/2013/common.js
 */
"getComputedStyle" in window || function() {
  function c(a, b, g, e) {
    var h = b[g];
    b = parseFloat(h);
    h = h.split(/\d/)[0];
    e = null !== e ? e : /%|em/.test(h) && a.parentElement ? c(a.parentElement, a.parentElement.currentStyle, "fontSize", null) : 16;
    a = "fontSize" == g ? e : /width/i.test(g) ? a.clientWidth : a.clientHeight;
    return "em" == h ? b * e : "in" == h ? 96 * b : "pt" == h ? 96 * b / 72 : "%" == h ? b / 100 * a : b;
  }
  function a(a, c) {
    var b = "border" == c ? "Width" : "", e = c + "Top" + b, h = c + "Right" + b, l = c + "Bottom" + b, b = c + "Left" + b;
    a[c] = (a[e] == a[h] == a[l] == a[b] ? [a[e]] : a[e] == a[l] && a[b] == a[h] ? [a[e], a[h]] : a[b] == a[h] ? [a[e], a[h], a[l]] : [a[e], a[h], a[l], a[b]]).join(" ");
  }
  function b(b) {
    var d, g = b.currentStyle, e = c(b, g, "fontSize", null);
    for (d in g) {
      /width|height|margin.|padding.|border.+W/.test(d) && "auto" !== this[d] ? this[d] = c(b, g, d, e) + "px" : "styleFloat" === d ? this["float"] = g[d] : this[d] = g[d];
    }
    a(this, "margin");
    a(this, "padding");
    a(this, "border");
    this.fontSize = e + "px";
    return this;
  }
  b.prototype = {};
  window.getComputedStyle = function(a) {
    return new b(a);
  };
}();

这对于编辑来说太大了,所以它做了一个答案,但它没有提供手头问题的完整答案。


Gabriel 的回答因类似"backgroundColor""background-color"取决于浏览器版本的属性而失败,因为.getPropertyValue需要 CSS 属性名称并el.currentStyle[prop]需要驼峰式版本。

这是一个固定版本,它总是需要驼峰式版本:

function getStyle(el, prop) {
    return (typeof getComputedStyle !== 'undefined' ?
        getComputedStyle(el, null) :
        el.currentStyle
    )[prop]; // avoid getPropertyValue altogether
}
从技术上讲,问题不是问“getComputedStyle 的跨浏览器等效项”。嗯,确实如此,但有人要求它也应该始终返回正确的值。问题的结尾不是太清楚,而是上下文。他们已经知道他们需要使用 getComputedStyle 或 currentStyle。
2021-04-17 17:34:31
@blissfool 它确实回答了我和许多其他人似乎正在寻找跨浏览器等效getComputedStyle部分(基于赞成票)。虽然您有权不喜欢我的回答,但它对于编辑来说太大了,它可以帮助将来遇到这个问题的人,所以我认为它不值得投反对票。
2021-04-18 17:34:31
但这并不能回答问题。您只是修复了另一个也没有回答问题的答案。
2021-04-26 17:34:31
@blissfool 我添加了一个免责声明来解释为什么这个答案存在。如果您仍然想要,这应该可以让您调整投票。
2021-05-01 17:34:31
我确实同意它可能对遇到这个问题并打算改变我的投票的人有所帮助,但由于时间过长,它似乎被锁定了。如果你想进行任何轻微的编辑,我会改变我的投票。
2021-05-10 17:34:31