标签: javascript jsp jstl
如何使用JSTL编写以下语句?
if (g.length!=0 && g!="null")
答案 0 :(得分:1)
你可以使用它 -
<c:if test="${not empty g}"> <!-- Other code --> </c:if>