我的 jsp 文件中显示了一个文本框字段,它看起来总是被禁用且不可编辑。我想在一个条件下启用和编辑它。
因此,当满足上述条件时,我会将保存该字段的页面保存在数据库中。我只想启用文本框并且该字段可编辑。我的代码如下,
<li class="Textbox"><input type="text"
dojoType="dijit.form.NumberTextBox" name="field name"
id="EDIT21" style="width: 45px;" size="4" maxlength="3"
value="${value of an expression}"
onchange="Config1.updateStatus();" required="true"
constraints="{min:1,max:999}"
rangeMessage="<spring:message code='validation.' arguments='1,999' />" />
</li>