重複の可能性:
アクセス許可が拒否されました IE iFrame
jquery を使用して動的 iframe から親ドキュメントにアクセスします
<iframe>
を使用して、動的な子から親ドキュメントにアクセスしようとしています$('#_hf_iFrame', top.document)
。Firefox、Chrome、および Safari で動作しますが、IE ではAccess Denied例外がスローされます。
次のコードを使用して<iframe>
動的に作成しています。
この質問はこの質問の続きです。次のコードを使用して、ダイナミックをドキュメントに追加します。
var _hf_iFrame = document.createElement("iframe");
_hf_iFrame.setAttribute("id", "_hf_iFrame");
_hf_iFrame.setAttribute("name", "_hf_iFrame");
_hf_iFrame.setAttribute("allow-transparency", true);
_hf_iFrame.setAttribute("style", "height: 354px; width: 445px; border: 0; top: 23%; position: fixed; left:0; overflow: show; background:transparent;");
document.body.appendChild(_hf_iFrame);
_hf_iFrame.setAttribute("src", "javascript:false");
var myContent = '<!DOCTYPE html>'
+ '<html><head><title></title><script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script><script type="text/javascript" src="http://somedomain.com/js/core.js"></script></head>'
+ '<body style="margin: 0px;"></body></html>';
_hf_iFrame.contentWindow.document.open('text/html', 'replace');
_hf_iFrame.contentWindow.document.write(myContent);
_hf_iFrame.contentWindow.document.close();
どうすればこれを解決できますか?