是可能在JSTL中做这样的事情:
<div class="firstclass<c:if test='true'> someclass</c:if>">
<p>some other stuff...</p>
</div>
有什么办法让这个工作,或者有更好的方法来添加一个类通过查看一个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>
原文链接:https://www.f2er.com/css/221327.html