我在jsp页面定义了一个orgId的变量
var orgId = $('.gwBjk').val();
然后我在同一个页面foreach一个对象,里面套用c if ,
<c:forEach items="${orJunior}" var="junior">
<c:if test="${junior.id == orgId}">
<input type="text" name="id" value="${junior.id}"/>
</c:if>
</c:forEach>
但是这个input框不在页面显示....
求大神告知原因
test里该怎么写?