通过按钮打开新窗口?

发布于 2024-09-15 18:26:50 字数 295 浏览 1 评论 0原文

我想通过按钮打开一个新窗口,但在这个新窗口中我从 servlet 检索地址(操作)

<html:button property="bouton" styleId="bouton" styleClass="boutonYellow" style="border: 1px solid rgb(0, 38, 97); width:200px;cursor:default;"  disabled="true">
<fmt:message key="name"/>
</html:button>

i want to open a new window from a button, but in this new window I retrieve an address from my servlet (Action)

<html:button property="bouton" styleId="bouton" styleClass="boutonYellow" style="border: 1px solid rgb(0, 38, 97); width:200px;cursor:default;"  disabled="true">
<fmt:message key="name"/>
</html:button>

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

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

发布评论

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

评论(1

心凉 2024-09-22 18:26:50
onclick="window.open(${url})"

URL(上述代码中的请求属性)可以包含可在新页面中使用的 GET 参数。或者它可以是一个 servlet URL,您可以在其中处理参数并转发/重定向到视图(页面)。

onclick="window.open(${url})"

The URL (being a request attribute in the above code) can contain GET parameters that you can use in the new page. Or it can be a servlet URL where you process the parameters and forward/redirect to a view (page).

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