将输入值从父窗口传递到弹出窗口
我制作了一个父窗口,其中包含一个文本框和用于打开 PopUp Child JSP 页面的超链接。
我希望通过 request.getParameter 方法访问子 JSP 上文本框中输入的值。我怎样才能实现这个目标?
I had made a parent window that includes a text box and hyperlink to open a PopUp Child JSP Page.
I wish to access the value entered in textbox on the Child JSP through request.getParameter method. How can I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需将值作为弹出窗口 URL 中的查询字符串传递即可。
假设您有一个,
您可以将其传递到弹出窗口,如下所示
,然后您可以在弹出窗口中访问它,如下所示
Just pass the value along as querystring in the URL of the popup window.
Assuming that you've a
you can pass it to the popup window as follows
then you can access it in popup window as follows