1

如何在输入标签的值属性内使用 c:when 条件?

<input id="textid" type="button" value="">

在“价值”中。我想要的是

<c:when test="${texttest == 'Y'}"> Add </c:when>
<c:otherwise> Edit </c:otherwise>

如果 textest 为“Y”,则值应为“Add”,否则为“Edit”

4

2 回答 2

3
<input id="textid" type="button" value="${texttest == 'Y' ? 'Add' : 'Edit'}">
于 2012-08-15T07:26:59.710 回答
0
<c:choose>
<c:when test="${texttest == 'Y'}">
 Add 
</c:when>
<c:otherwise>
 Edit 
</c:otherwise>
</c:choose>
于 2012-08-10T09:16:52.723 回答