通过按钮打开新窗口?
我想通过按钮打开一个新窗口,但在这个新窗口中我从 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
URL(上述代码中的请求属性)可以包含可在新页面中使用的 GET 参数。或者它可以是一个 servlet 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).