japplet 打开第二个窗口

发布于 2024-10-06 14:22:16 字数 115 浏览 1 评论 0原文

是否可以从 japplet 打开新窗口?现在我正在使用 getAppletContext().showDocument() 打开文档,但它会关闭我的小程序。有人知道如何在不干扰小程序的情况下打开第二个窗口吗? 谢谢。

is it possible to open a new window from a japplet? right now i'm using getAppletContext().showDocument() to open a document, but it closes my applet. anyone know how to open a second window without interfering with the applet?
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

以往的大感动 2024-10-13 14:22:16

尝试使用也采用目标的版本并传递“_blank”作为目标:

getAppletContext().showDocument(new URL("http://www.google.com"), "_blank");

Try using the version that takes a target as well and pass "_blank" as the target:

getAppletContext().showDocument(new URL("http://www.google.com"), "_blank");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文