如何在不使用 window.open() 和 发布于 2024-08-05 21:24:23 字数 272 浏览 2 评论 0 原文
在我的 struts2 应用程序中,当用户单击 jsp 页面上的可用链接时,我想打开一个新窗口。
我不想使用javascript的window.open()函数和锚标记,即
。
Onclick 控件应该转到操作类,经过一些处理后它应该打开一个新窗口。
如果可能的话请帮忙。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,如果您既不想使用锚点也不想使用 window.open() (为什么?),您唯一的其他选择是在表单上使用“target”属性并提交它:
请注意:
有关“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:
Be warned that:
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?