码迷,mamicode.com
首页 > 其他好文 > 详细

struts标签,<s:textfield>嵌套<s:property>的问题

时间:2015-03-04 12:31:46      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:

错误:org.apache.jasper.JasperException: /front/orderList.jsp(110,122) equal symbol expected
 
<s:textfield name="orderInfo.num" size="20" value="%{count}" onchange="changeCount(this.value,‘<s:property value=‘foodid’>‘)"></s:textfield>
struts2标签不能嵌套使用,应改为
<s:textfield name="orderInfo.num" size="20" value="%{count}" onchange="changeCount(this.value,‘%{foodid}‘)"></s:textfield>
 
 
<input type="text" id="employee_<s:property value="#plotDetail.ctaskId" />" />//将此变为可以回显的
修改为:
<s:textfield  id="employee_%{#plotDetail.ctaskId}" value="%{#plotDetail.employee}"></s:textfield>
 

struts标签,<s:textfield>嵌套<s:property>的问题

标签:

原文地址:http://www.cnblogs.com/hanxue53/p/4312781.html

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