我正在寻找一种选择所有不可见元素的方法。类似的东西webkit.window.document.querySelectorAll("p:hidden")
。
例如,在 html
<html>
<head></head>
<body>
<p>123</p>
<p style="display:none;"></p>
</body>
</html>
我可以用 选择不可见,但如果和"p[style*='display:none']"
之间存在空格,它就不起作用。喜欢。display
none
<p style="display: none;"></p>
总之,我需要一种使用 WebKit 选择所有不可见元素的方法。