将字符串传递给弹出窗口
我正在使用 JSP 页面,它显示已获取的存储对象的表。我希望当用户单击显示存储对象大小的数字时弹出另一个 JSP 页面。
如何使用 Javascript(或任何其他技术)将指定存储项的名称传递到弹出 JSP 窗口,然后在弹出 JSP 中检索该名称并能够在该页面的代码中使用它?
for 循环脚本如下所示:
<% for(Storage s : someList){ %>
<tr>
<td> <%= s.getName() %> </td> <td> <%= s.getSize() %> </td>
</tr>
<% } %>
I'm working with a JSP page and it's displaying a table of a storage objects that was fetched. I want to have a popup to another JSP page when the user clicks on the number that is showing the size of the storage object.
How do I pass the name of the specified storage item to the popup JSP window with Javascript (or any other technique), and then retrieve that name in the popup JSP and be able to use it in that page's code?
The scriptlet for-loop looks like this:
<% for(Storage s : someList){ %>
<tr>
<td> <%= s.getName() %> </td> <td> <%= s.getSize() %> </td>
</tr>
<% } %>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将其作为请求参数传递。
例如
,在
popup.jsp
中:或者,更简洁地,使用 JSTL 和 EL:
在
popup.jsp
中Pass it as request parameter.
E.g.
with in
popup.jsp
:Or, more cleanly, with JSTL and EL:
with in
popup.jsp