作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有这样的代码,在这里我设置选项{allowInvalid: true}
<input type="number" name="userName"
ng-model="user.name"
ng-model-options="{ allowInvalid: true }"
ng-blur="test(user)"/>
abc
,
user.name
仍然更改为
undefined
?
user.name
应该是
'abc'
。
最佳答案
在link之后,您不能将allowInvalid
与type="number"
属性一起使用。
Issues with HTML5 constraint validation
In browsers that follow the HTML5 specification,
input[number]
does not work as expected withngModelOptions.allowInvalid
. If a non-number is entered in the input, the browser will report the value as an empty string, which means the view / model values in ngModel and subsequently the scope value will also be an empty string.
关于javascript - Angular ngModelOptions allowInvalid无法正常工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30683673/
我是一名优秀的程序员,十分优秀!