首页 > 代码库 > JSP页面跳转页面带参数

JSP页面跳转页面带参数

1、

<script type="text/javascript">
window.location.href=http://www.mamicode.com/‘index2.jsp?xxx=123‘
</script>

或者

2、<a href=http://www.mamicode.com/"index2.jsp?xxx=123">传参数测试

3、<jsp:forward page="index2.jsp">
       <jsp:param name="xxx" value=http://www.mamicode.com/"123" />
</jsp:forward>

都可以在 index2.jsp 页面中通过${param.xxx }或者 <%=request.getParameter("xxx") %> 都 可以 取得到

注:

param  它的取值范围Page,Request,Session,Application。 

${param.name}等价于request.getParameter("name"),{param[name]}也是一样的

${params.name}等价于request.getParameterValues("name")

注意:

1、${requestScope.name} 等价于 request.getAttribute("name")

2、上面没有指出从哪个scope中取,所以按顺序检测那四个scope

3、最好用${xxsScope.name} ,不用 ${param.name}


JSP页面跳转页面带参数