当一个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});
});
您可能感兴趣的文章:- jsp中获得路径的两种方法和获得url路径的方法(推荐)
- jsp Request获取url信息的各种方法对比
- jsp获取url路径的方法分析
- JSP对URL链接中的中文乱码处理方法总结
- jsp中URL传递中文参数的处理方法
- JSP中js传递和解析URL参数以及中文转码和解码问题
- javascript通过url向jsp页面传递中文参数导致乱码解决方案
- JSP struts2 url传参中文乱码解决办法