我有与此类似的 Html 布局:
父页面 > iFrame
我想编写动态 iframe 和内容,因此布局应该类似于:
Parent > 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 都在同一个域上。