0

如何在我的 Angular 应用程序中使用 intl-tel-input(https://github.com/Bluefieldscom/intl-tel-input)jquery 插件来格式化手机号码字段。

4

1 回答 1

1

您需要加载 jQuery 并将其包装在指令中。

指令定义:

app.directive('intlTel', function(){
  return{
    replace:true,
    restrict: 'E',
    require: 'ngModel',
    template: '<input type="text" placeholder="e.g. +1 702 123 4567">',
    link: function(scope,element,attrs,ngModel){
      var read = function() {
        var inputValue = element.val();
        ngModel.$setViewValue(inputValue);
      }      
      element.intlTelInput({
        defaultCountry:'fr',
      });
      element.on('focus blur keyup change', function() {
          scope.$apply(read);
      });
      read();
    }
  }
}); 

利用:

<intl-tel ng-model="model.telnr"></intl-tel>

看这个Plunker

于 2014-12-11T10:20:51.320 回答