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 を取得したいと考えています。
ジェイ、
iframeにIDを指定して、次を使用できます
parent.$('#id_of_your_iframe').parent();
また
iframeの親divにIDを指定して、次を使用できます
parent.$('#id_of_parent_div_of_your_iframe');