的情况下打开新窗口在Struts2中" />

在我的 struts2 应用程序中,当用户单击 jsp 页面上的可用链接时,我想打开一个新窗口。

不想使用javascript的window.open()函数和锚标记,即

Onclick 控件应该转到操作类,经过一些处理后它应该打开一个新窗口。

如果可能的话请帮忙。

In my struts2 application I want to open a new window when user click on a link available on jsp page.

I don’t want to user window.open() function of javascript and anchor tag i.e <s:a href=””>.

Onclick control should goto action class, after some processing there it should open a new window.

Please help if it is possible.

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

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

发布评论

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

评论(1

花辞树 2024-08-12 21:24:23

好吧,如果您既不想使用锚点也不想使用 window.open() (为什么?),您唯一的其他选择是在表单上使用“target”属性并提交它:

<form name="..." method="..." action="..." target="_blank">

请注意:

  1. 它在 HTML 4.01 中已弃用,并且XHTML 严格不支持。
  2. 该窗口将打开,控制权将转移给它。你不能在行动中突然决定不想打开那扇窗户;你能做的最好的事情就是尝试关闭它。

有关“target”属性的详细信息位于此处。再一次, window.open() 和 似乎都是更好的解决方案 - 您为什么反对使用它们?

Well, if you don't want to use neither anchor nor window.open() (why?) your only other option is to use "target" attribute on a form and submit it:

<form name="..." method="..." action="..." target="_blank">

Be warned that:

  1. It's deprecated in HTML 4.01 and not supported in XHTML strict.
  2. That window WILL open and control will be transferred to it. You can't suddenly decide in your action that you don't want to open that window; the best you can do is try to close it.

Details on "target" attribute are here. Once again, both window.open() and <a href="..." target="..."> seem like better solutions - why are you opposed to using them?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文