struts标签,嵌套的问题

错误: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标签,嵌套的问题)