是可能在JSTL中做这样的事情:
<div class="firstclass<c:if test='true'> someclass</c:if>"> <p>some other stuff...</p> </div>@H_404_4@有什么办法让这个工作,或者有更好的方法来添加一个类通过查看一个JSTL-if语句?
解决方法
<c:if test='true'> <c:set value="someclass" var="cssClass"></c:set> </c:if> <div class="${cssClass}"> <p>some other stuff...</p> </div>