当一个url过来时,如::8080/pro/demo/hello.jsp?name=john,在hello.jsp页面,我们可以这样得到name的值:
复制代码 代码如下:
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"http://www.vevb.com/";
String name = request.getParameter("name");//用request得到
%>
复制代码 代码如下:
<body>hello:${param.name}</body>
依据此逻辑,在使用jquery时,也可以用同样的方法得到,如:
$(function(){
alert(${param.name});
});
新闻热点
疑难解答