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 中获取使用 jquery 加载当前 iframe 的 div 的 id。
杰伊,
您可以将 id 提供给您的 iframe,然后使用
parent.$('#id_of_your_iframe').parent();
或者
您可以将 id 提供给 iframe 的父 div,然后使用
parent.$('#id_of_parent_div_of_your_iframe');