当前位置: 代码迷 >> J2EE >> 怎的在标签中使用标签
  详细解决方案

怎的在标签中使用标签

热度:248   发布时间:2016-04-22 03:33:33.0
怎样在标签中使用标签
<c:set value="1234567" var="str" scope="page"></c:set>
${fn:substring("1234567","1","4") }---正确
${fn:substring(${str},"1","4") }----错误

该怎样在标签中使用标签?

------解决方案--------------------
${fn:substring(str,"1","4") }直接用句可以了
  相关解决方案