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