如何在html页面的参数中显示变量值?

时间:2017-04-26 11:26:25

标签: post get parameter-passing

假设我想使用下面的html代码中给出的一些参数重定向到另一个页面

链接到第2页

每当我们点击此链接时,我的浏览器就会转到

http://localhost:8080/cloud/page2.jsp?id=2489&user=tom

然后我想显示id&的值用户参数到下一页

我应该怎么做??????

我在php中得到了解决方案

echo $ _GET ['id']; //输出2489

但我想在JSP或html中使用解决方案

1 个答案:

答案 0 :(得分:0)

使用request.getParameter()方法。

System.out.println(request.getParameter("id"));

System.out.println(request.getParameter("user"));
jsp页面中的

<%= request.getParameter("id")%>

<%= request.getParameter("user")%>