Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在kendonumeric中输入大数字问题是3位分隔符仅在失去焦点后才起作用我需要在http://robinherbots.github.io/jquery.inputmask/之类的类型期间应用3位掩码
为您的输入使用 jQuery 掩码
在元素处添加属性
data-inputmask="'alias': 'decimal', 'groupSeparator': ',', 'autoGroup': true"
然后激活小部件
$('[data-inputmask]').inputmask();
jsfiddle