var display_setting = "toolbar=yes, location=no, directories=yes, menubar=yes,";
display_setting += "scrollbars=yes, width=750, height=600, left=100, top=25";
var printwin = window.open('', 'printwin', display_setting )
printwin.document.open()
printwin.document.write("Testing")
printwin.document.close()
上記のコードがIE9で「アクセスが拒否されました」エラーを生成するのに、FirefoxまたはChromeでは完全に正常に機能するのはなぜですか?回避策はありますか?これは、ExtJS4.1アプリケーションが単一ドメインのイントラネット上で実行されているものです。これは、要因となる可能性のあるExtJS履歴機能を使用します。
ありがとう