Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 iframed 文档中的元素上使用 WebKit 的 window.getMatchedCSSRules 来查找匹配的样式(在 iframed 文档中定义/来源)?当我尝试这个时,我只是得到了父文档的匹配样式。还有其他解决方案吗?
而不是使用window.getMatchedCSSRules,使用frame.contentWindow.getMatchedCSSRules框架元素(例如框架可能是$('iframe').get(0))
window.getMatchedCSSRules
frame.contentWindow.getMatchedCSSRules
$('iframe').get(0)