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

时间:2012-08-10 09:11:17

标签: jstl

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

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

中的'价值'。我想要的是

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

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

2 个答案:

答案 0 :(得分:3)

<input id="textid" type="button" value="${texttest == 'Y' ? 'Add' : 'Edit'}">

答案 1 :(得分:0)

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