1. 程式人生 > >jstl和字串比較是否相等

jstl和字串比較是否相等

jstl和字串比較

 方法1 

<c:if test="${sessionScope.language eq 'en' }">   
 111
</c:if>

方法2

<c:if test="${sessionScope.language == 'en' }">   
 111
</c:if>