text只读和禁用的区别
程序员文章站
2024-01-28 10:05:16
...
disabled="true"令文本框不可用,变灰,而且传值传不过去
readonly="true"令文本框不可编辑,但是不变灰,而且可以传值过去
编号: <html:text property="id" readonly="true" value="${id}"/>
编号: <html:text property="id" disabled="true" value="${id}"/>