皆さん、私は 1 つの問題に直面しました。
ZUL コード:
<window title="Hello World!!" id="winMain" border="none" width="100%" height="100%">
<script type="text/javascript">
<![CDATA[
function testAlert() {
window.open ("http://cn.bing.com", "Show", "menubar=0,resizable=1,location=0,width=683,height=384");}
]]>
</script>
<div align="center">
<button id="btnShow" label="Show">
<attribute name="onClick">
<![CDATA[
Clients.evalJavaScript("testAlert()");
]]>
</attribute>
</button>
</div>
</window>
ZUL コードの機能は、一部のブラウザーで 1 つの新しいウィンドウを開くことであり、CHROME、Firfox でうまく機能します。しかし、IE8 で実行すると、いくつかのエラーが発生します。
クライアント エラー: スクリプトの処理に失敗しました。エラー 80020101 のため、操作を完了できませんでした。(エラー)
この問題の解決策はありますか? どうもありがとうございました !!!