<form:input type="number" .....>
在我的jsp中,但当我检查在浏览器上呈现的html时,它显示如下:
type="number" type="text"
即,在html中生成两个类型属性.
另一方面,如果我在浏览器中使用inspect element选项进行检查,它会显示正确 – 只有type =“number”按预期方式.编辑 – 我的问题:为什么我在生成的html中获得两个类型属性(type =“number”type =“text”)?如何解决?
另外看看HTML Text Input allow only Numeric input
Spring form tld列出了form的有效属性:input element here