jsp页面获得url参数的方法

发布时间:2019-07-27编辑:脚本学堂
本文介绍了从jsp页面获得url参数的方法,有需要的朋友参考学习下。

例如,当一个url过来时,如:http://localhost:8080/pro/demo/hello.jsp?name=john,在hello.jsp页面,可以这样得到name的值:
 

复制代码 代码示例:
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
String name = request.getParameter("name");//用request得到
%>
 

然后,在<body>hello:<%=name%></body>中显示。
 
也可以在body中直接用${}得到,因为当使用jstl时,url请求参数被放置到隐含对象param中。
例子:
 

复制代码 代码示例:
<body>hello:${param.name}</body>

依据此逻辑,在使用jquery时,也可以用同样的方法得到,例如:
 

复制代码 代码示例:
$(function(){
alert(${param.name});
});