J2EE中EL的隱式對象param和paramValues
一、param.html
<html> <head><title>param.jsp</title></head> <body> <form method="post" action="param.jsp"> <p>姓名:<input type="text" name="username" size="15" /></p> <p>密碼:<input type="password" name="password" size="15" /></p> <p>性別:<input type="radio" name="sex" value="Male" checked/>男<input type="radio" name="sex" value="Female" /> 女</p> <p>年齡:<select name="old"> <option value="10">10 - 20</option> <option value="20" selected>20 - 30</option> <option value="30">30 - 40</option> <option value="40">40 - 50</option> </select></p> <p>興趣:<input type="checkbox" name="habit" value="Reading"/>看書 <input type="checkbox" name="habit" value="Game"/>遊戲 <input type="checkbox" name="habit" value="Travel"/>旅遊 <input type="checkbox" name="habit" value="Music"/>聽音樂 <input type="checkbox" name="habit" value="Tv"/>看電視</p> <p> <input type="submit" value="提交"/> <input type="reset" value="清除"/> </p> </form> </body> </html>
二、param.jsp
<%@ page contentType="text/html;charset=GB2312" %> <%@ taglib prefix="c" uri="https://java.sun.com/jsp/jstl/core" %> <%@ taglib prefix="fmt" uri="https://java.sun.com/jsp/jstl/fmt" %> <html> <head><title>param.jsp</title></head> <body> <fmt:requestEncoding value="GB2312" /> 姓名:<c:out value="$ {param.username}"/></br> 密碼:<c:out value="$ {param.password}"/></br> 性別:<c:out value="$ {param.sex}"/></br> 年齡:<c:out value="$ {param.old}"/></br> 興趣:<c:out value="$ {paramValues.habit[0]}"/> <c:out value="$ {paramValues.habit[1]}"/> <c:out value="$ {paramValues.habit[2]}"/> <c:out value="$ {paramValues.habit[3]}"/> <c:out value="$ {paramValues.habit[4]}"/> </body> </html>
原帖地址:https://blog.sina.com.cn/s/blog_66c2c28e010172ap.html
最後更新:2017-04-03 21:30:13