欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

JSP页面跳转页面带参数_html/css_WEB-ITnose

程序员文章站 2022-04-13 18:22:37
...
1、

或者

2、传参数测试

3、

都可以在 index2.jsp 页面中通过${param.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}