使用 javascript 在 Chrome 上获取当前样式时速度太慢

发布于 2025-01-07 19:49:26 字数 341 浏览 1 评论 0原文

我被一个愚蠢的问题困住了。下面是我的代码来获取 dom 的计算样式。它在 FireFox 甚至 IE 上运行良好(惊讶)!但在 chrome v17 上太慢了(慢了 20 倍)。如何避免这个问题呢?

getCurrentStyle = function(el)
{
    if (el.currentStyle)
        return el.currentStyle;
    else if (window.getComputedStyle)
        return document.defaultView.getComputedStyle(el,null);
    return null;
}

I am stuck with a stupid problem. Below is my code to get computed style of a dom. It run well on FireFox and even IE (surprised)! but too slow on chrome v17 (20x time slower). How to avoid the problem?

getCurrentStyle = function(el)
{
    if (el.currentStyle)
        return el.currentStyle;
    else if (window.getComputedStyle)
        return document.defaultView.getComputedStyle(el,null);
    return null;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如若梦似彩虹 2025-01-14 19:49:26

这是一个 Chrome 错误。这样我们就避免使用这个函数:

document.defaultView.getComputedStyle(el,null)

It is a Chrome bug. So that we avoid to use this function:

document.defaultView.getComputedStyle(el,null)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文