gpt4 book ai didi

performance - 使用 javascript 在 Chrome 上获取当前样式时太慢

转载 作者:行者123 更新时间:2023-12-02 00:24:33 25 4
gpt4 key购买 nike

我遇到了一个愚蠢的问题。下面是我获取 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;
}

最佳答案

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

document.defaultView.getComputedStyle(el,null)

关于performance - 使用 javascript 在 Chrome 上获取当前样式时太慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9377639/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com