0

我正在关注官方的角度文档,但它对我不起作用。有什么问题?我需要验证是否需要手机并遵循 +4400000000 等国际标准(加上信号和数字,没有空格,只有加号后的数字)。

我的代码是......

.controller('ModalInstanceChangeDetailsCtrl', function ($scope, $rootScope,  $uibModalInstance, items) {
    $scope.rxMobile = '^\+[1-9]{1}[0-9]{3,14}$';
}

<form name="form">
<div class="form-group">
        <label>Mobile number</label><label class="fieldError" ng-show="form.mobile.$error.required || !form.mobile.$valid">This field is required and must use International format, ex: +440000000000</label>
        <input ng-pattern="rxMobile" required ng-model="mobile" name="mobile" type="text" class="form-control">
 </div>
</form>

有什么建议吗?

4

3 回答 3

0

使用正则表达式验证电话号码

+[\d]{10}$

于 2017-02-24T13:43:12.253 回答
0

好的,我发现了问题所在...

 $scope.rxMobile = /^\+[1-9]{1}[0-9]{3,14}$/;

如果我不带引号将它括起来,它就可以了。

于 2017-02-24T13:44:14.623 回答
0

使用此正则表达式验证国际标准电话号码:

$scope.rxMobile = '^\\+\\d{10}\\b';

于 2017-02-24T13:37:42.013 回答