使用params jsp

时间:2016-06-13 09:22:09

标签: html jsp

我正在为学校项目建立一个网站。在页面中,我需要链接到另一个页面(profile.jsp)与params,因为我需要在该页面中进行查询。我已经在JSP尝试了,但它会立即打开页面,我需要通过链接或按钮来激活它。我在这里使用的是windows.location,但它不允许我现在给予参数。



<div class="mask_container">
<h2><%out.println(title);%></h2>
<p onClick="JavaScript:window.location='profile.jsp';"><%out.println(autor);%></p>
<img src="img/like-white.png" class="social">
<img src="img/comment-white.png" class="social">
<img src="img/download-white.png" class="social">
</div>
&#13;
&#13;
&#13;

1 个答案:

答案 0 :(得分:0)

如何在查询字符串中传递参数值,如下所示,而不是<p>标记放在<a>标记下面以重定向到另一个页面

<a href="profile.jsp?param=<%out.println(autor);%>&otherparam=<%out.println(otherparameter);%>"><%out.println(autor);%></a>  

您可以使用request.getParameter("param")在其他页面上获取参数值,这将为您提供参数值。

愿这对你有所帮助。