模式使输入文本只接受 0-9 之间的数字。
这是我的模式:
$scope.onlyNumbers = /[\u0030-\u0039]+/g;
出于某种原因,即使它不在我声明的范围内,也会接受像“-”这样的字符。
这是我的输入 html:
<input style="width:40%;" type="text" name="phone" ng-minlength="10" ng-maxlength="15" ng-model="register.phone" placeholder='cell phone' ng-pattern="onlyNumbers" required title="please enter cell phone">
有人可以帮忙吗?