在角度内使用jquery插件

时间:2014-12-11 10:16:40

标签: jquery angularjs intl-tel-input

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

1 个答案:

答案 0 :(得分:1)

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

指令Def:

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