私はこれに似たHTMLレイアウトを持っています:
親ページ>iFrame
動的なiframeとコンテンツを作成したいので、レイアウトは次のようになります。
親>iFrame>新しいiFrameとそのコンテンツを作成する
このコードを使用して、子iframeのhtmlコンテンツを記述できます
親ページ>iFrame>Hello World!
var ifrm = document.getElementById('myIframe');
ifrm = (ifrm.contentWindow) ? ifrm.contentWindow : (ifrm.contentDocument.document) ? ifrm.contentDocument.document : ifrm.contentDocument;
ifrm.document.open();
ifrm.document.write('Hello World!');
ifrm.document.close();
しかし、どうすれば同じコンテンツを内部に書き込むことができますか?
親ページ>iFrame>iFrame> Hello World?
すべてのiFrameは同じドメインにあります。