当我尝试写这样的东西时:struts1中的<html:text styleId="Istituto" type="number">
会给我一个错误
根据TLD
标记文本的属性类型无效
如何将“type”属性添加到<html:text>
代码?
答案 0 :(得分:3)
我知道这是旧的,但我目前正在开发一个使用Struts 1框架的超级旧应用程序,今天我遇到了同样的问题。这是我正在使用的解决方案:
<input type="number" name="budgetValue"
value="<bean:write name="applicantForm" property="budgetValue"/>">
其中: budgetValue - 是Form属性; applicantForm - 是表格
答案 1 :(得分:0)
感谢Milebza
的答案,但对我而言,只有这种方式有效。
<input type="number" name="budgetValue" value="${applicantForm.budgetValue}" />