本文介绍了AngularJS xeditable号字段浮法验证的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有AnularJS问题。
如果我使用xeditable
I have issue with AnularJS.If I use xeditable
<a editable-number="some.object"....
我无法输入浮点数...
那么,怎么样,我可以添加浮点数,并有鉴于浮法验证???
I can't input float numbers... so, how, I can add float numbers and have float validation in view???
THX!
推荐答案
您需要设置步
的属性&LT;输入类型= 数字方式&gt;
标记为任何
You need to set the step
attribute of the <input type="number">
tag to "any".
要解决这个问题的方法之一是利用xeditable的电子商务 - *
语法,其中任何属性可以指定一个开始ë -
将传递到底层的输入标签:
One way to solve this is to take advantage of xeditable's e-*
syntax, where any attribute you specify that begins with e-
will be passed through to the underlying input tag:
<a editable-number="some.object" e-step="any">{{some.object || 'Enter Number'}}</a>
这篇关于AngularJS xeditable号字段浮法验证的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!