在jsp页面获得url参数的方法

来源:互联网 发布:mac 查看进程占用端口 编辑:程序博客网 时间:2024/05/15 11:16

例如一个url:http://localhost:8080/testdemo/hello.jsp?name=ming,在hello.jsp页面,我们可以这样得到name的值

第一种方法:

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

第二种方法:

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

这里写代码片
 <body>hello:${param.name}</body>   //依据此逻辑,在使用jquery时,也可以用同样的方法得到,如:  $(function(){     alert(${param.name});   }); 

完整:

<%String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";pageContext.setAttribute("baseUrl",basePath); %>
0 0
原创粉丝点击