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.
我需要选择所有不在 iframe 中的 div 标签。我可以为此写什么选择器?我需要类似的东西:$("div:not(in iframe)")
$("div:not(in iframe)")
只需使用$("div").
$("div")
an 中的任何元素iframe都将位于您无法访问的不同文档中$()。
iframe
$()