如何在输入标签的值属性内使用 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”
如何在输入标签的值属性内使用 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”