首页 > 编程 > JSP > 正文

在jsp页面如何获得url参数

2024-09-05 00:22:02
字体:
来源:转载
供稿:网友
这篇文章主要介绍了在jsp页面获得url参数的方法,需要的朋友可以参考下

当一个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:<%=name%></body>中显示。

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

复制代码 代码如下:


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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表