我必须检查 struts 标记中的条件并启用或禁用该字段,如下所示:
<c:when test="${multipleCase=='true'}">
<html:text property="${row.dataElementJavaName}"
maxlength="${row.dataElementSize}"
size="60"
value="${row.dataElementValue}"
onkeyup="javascript:enableSave()"
onkeypress="return letternumber(event,'c')"
<c:if test="${model.readonlyStatus=='true'}">disabled</c:if>
/>
</c:when>
编译时出现以下错误:
Attribute: <c:if is not a valid attribute name
Encountered end tag </c:if> without corresponding start tag.
如果我在 HTML 输入字段中使用相同的,它工作正常。另一种选择是什么?任何输入?