如何设置NumberTextBox只接受dojo中的数字?

前端之家收集整理的这篇文章主要介绍了如何设置NumberTextBox只接受dojo中的数字?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下NumberTextBox,我想只允许数字,但我不知道什么是用于使其成为可能的约束属性.

<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

使用dojo NumberTextBox,您仍然可以输入字符:a,b,c.它只会给你无效的消息.如果您只想允许数字输入,可以使用javascript here.

原文链接:https://www.f2er.com/dojo/730034.html

猜你在找的Dojo相关文章