码迷,mamicode.com
首页 > Web开发 > 详细

JSP参数传递兼EL表达式

时间:2014-11-09 22:01:55      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   ar   sp   div   log   代码   

 

/**
浏览器地址栏输入?方式传递参数
?test=123
*/
可以用${param.test}方式输出

 

/**
JSP页面中输入
<% request.setAttribute("test2", "1234");%>
传递参数
*/
可以在页面代码中输入以下方式输出:
${requestScope.test2}
<%=request.getAttribute("test2") %>

 

 

 

 

参考:关于EL表达式中requestScope和param区别

JSP参数传递兼EL表达式

标签:style   blog   http   color   ar   sp   div   log   代码   

原文地址:http://www.cnblogs.com/otio/p/4085853.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!