最佳答案
如果 JSP 中存在某些值,我需要隐藏一个元素
这些值存储在 List 中,因此我尝试:
<c:if test="${ mylist.contains( myValue ) }">style='display:none;'</c:if>
但是,没有用。
如何计算列表是否包含 JSTL 中的值,列表和值都是字符串。