将输入值从父窗口传递到弹出窗口

发布于 2024-10-13 04:50:38 字数 123 浏览 1 评论 0原文

我制作了一个父窗口,其中包含一个文本框和用于打开 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 技术交流群。

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

发布评论

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

评论(1

離人涙 2024-10-20 04:50:38

只需将值作为弹出窗口 URL 中的查询字符串传递即可。

假设您有一个,

<input type="text" id="foo">

您可以将其传递到弹出窗口,如下所示

var foo = document.getElementById('foo').value;
window.open('child.jsp?foo=' + encodeURIComponent(foo));

,然后您可以在弹出窗口中访问它,如下所示

<p>The value is ${param.foo}</p>

Just pass the value along as querystring in the URL of the popup window.

Assuming that you've a

<input type="text" id="foo">

you can pass it to the popup window as follows

var foo = document.getElementById('foo').value;
window.open('child.jsp?foo=' + encodeURIComponent(foo));

then you can access it in popup window as follows

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