我想字符串比較JSTL字符串比較總是返回false
<c:if test="${dept eq 'account'}"></c:if>
但這總是返回false
。我檢查部門變量的值爲'account'
。我也試過這樣
<c:if test="${dept == 'account'}"></c:if>
這也返回false
。
但是,如果我用Java代碼這樣即可正常工作
<%
if(dept.equals("account")){
blah blah blah
}
%>
任何幫助將非常感激。
感謝
你是什麼意思的「返回false」。你確定你的''標籤實際上正在執行嗎? –
skaffman
2010-11-16 16:44:34