Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我一直遇到 JSTL c:if 似乎无法正常工作的问题。所以我用以下语句对其进行了测试...
<c:if="${1 == 2}"> 1 is equal to 2 </c:if>
它正在输出“1等于2”......
我在这里缺少什么吗?
编辑:发现了问题,我很傻。。问题是我忘记在页面中包含 jstl 核心标签库
带有条件的 EL 表达式必须是test属性的值。
test
<c:if test="${1 == 2}"> 1 is equal to 2 </c:if>
<c:if>