标签:使用 sp c r bs as js 方法 class
<jsp:setProperty name=”student” property=”classno” value=”56789” />
<jsp:setProperty name=”student” property=”name” value=”bbbb” />
<jsp:setProperty name=”student” property=”age” value=”33” />等价:<% student.age=33;%>
两者可以完成useBean 中的完值和取值操作:
<jsp:getProperty name=”student” property=”classno” />等价:<%=student.classno %>
<jsp:getProperty name=”student” property=”name” />
<jsp:getProperty name=”student” property=”age” />
Jsp setProperty 和getProperty 动作的使用方法
标签:使用 sp c r bs as js 方法 class
原文地址:http://www.cnblogs.com/yuyezhulan/p/3969728.html