将数据从一页传递到另一页
我有一个由许多锚标记组成的页面,当单击每个链接时,必须将关联的数据发送到目标页面并显示在目标页面中。这是代码的快照
<a href="target.html?Some%data">click1</a>
<a href="target.html?Some%other%data">click2</a>
等等...当我单击 clik1 时,我应该能够显示一些数据,当我单击 click2 时,我应该能够显示一些其他数据
I have a page consisting of many anchor tags and when each link is clicked an associated data has to be sent to the target page and is to be displayed in the target page. Here is the snapshot of the code
<a href="target.html?Some%data">click1</a>
<a href="target.html?Some%other%data">click2</a>
and so on...i should be able to display Some data when i click on clik1 and Some other data when i click on click2
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将它们作为 GET 请求参数传递到
source.jsp
中的查询字符串:(请注意,空格应为 URL 编码为
%20
,而不是%
)并使用 EL
${param}
在target.jsp
中访问它们:防止 XSS 攻击,最好使用JSTL 的
c:out
重新显示用户控制的输入:另请参阅:
Pass them as GET request parameters in a query string in
source.jsp
:(note that a space is to be URL-encoded as
%20
, not as%
)And use EL
${param}
to access them in thetarget.jsp
:To prevent XSS attacks, preferably use JSTL's
c:out
to redisplay user-controlled input:See also: