当一个url过来时,如::8080/pro/demo/hello.jsp?name=john,在hello.jsp页面,我们可以这样获得name的值:
复制代码 代码如下:
<%
String path = request.getContextPath();
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"https://www.jb51.net/";
String name = request.getParameter("name");//用request获得
%>
然后在<body>hello:<%=name%></body>中显示。
也可以在body中直接用${}获得,因为当利用jstl时,url请求参数被安排到隐含工具param中。所以可以这样写:
复制代码 代码如下:
<body>hello:${param.name}</body>
依据此逻辑,在利用jquery时,也可以用同样的要领获得,如:
$(function(){
alert(${param.name});
});
您大概感乐趣的文章: