在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得到 
%> 

 然后在hello:<%=name%>中显示。

也可以在body中直接用${}得到,因为当使用jstl时,url请求参数被放置到隐含对象param中。所以可以这样写:

hello:${param.name} 
依据此逻辑,在使用jquery时,也可以用同样的方法得到,如: 
$(function(){ 
alert(${param.name}); 
}); 

 

你可能感兴趣的:(iframe)