错误: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" />//将此变为可以回显的
修改为:
<s:textfield  ></s:textfield>
 

相关文章:

  • 2021-06-20
  • 2022-12-23
  • 2022-12-23
  • 2021-10-27
  • 2022-12-23
  • 2021-11-27
  • 2022-12-23
  • 2021-11-27
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-06-22
  • 2022-12-23
  • 2021-04-14
  • 2021-07-02
  • 2022-12-23
相关资源
相似解决方案