本文主要是介绍JSTL 函数内使用JSTL(内嵌),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
JSTL函数内使用JSTL函数
${fn:contains(rest.methods, ${pay.id})} 这是错误的,实际上内部可以省略${}
正确写法:
${fn:contains(rest.methods, pay.id)}
<c:forEach items ="${pays}" var= "pay"><div class ="col-xs-3"><label class= "css-input css-checkbox css-checkbox-primary" ><input type= "checkbox" < c:if test= "${fn:contains(rest.methods, pay.id)}">checked</c:if > value= "${pay.id}" ><span ></span > ${pay.name}<span ></span ></label ></div >
</c:forEach >
这篇关于JSTL 函数内使用JSTL(内嵌)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!