我有以下NumberTextBox
,我想只允许数字,但我不知道用于实现它的constraints
属性是什么。
<input type="text" data-dojo-type="dijit.form.NumberTextBox" invalidMessage="Please enter only numbers" constraints="{}" required="true"
答案 0 :(得分:7)
您可以拥有以下内容:
constraints: { min:0, places:0}
另见:http://www.unicode.org/reports/tr35/#Number_Format_Patterns
使用dojo NumberTextBox,您仍然可以输入字符:a,b,c。它只会给你无效的消息。如果您只想允许数字输入,可以使用javascript here。