0

我正在尝试使用 Input Mask jQuery 插件作为指令,但在 Chrome 的控制台错误中出现以下错误。

TypeError: Cannot read property 'length' of undefined

我的代码

JS

var app = angular.module('app', ['ngResource']);

app.directive('inputMask', function(){
    return {
        restrict: 'A',
        link: function(scope, element){
             element.mask();
        }
    }
})

HTML

<input type="text" class="form-control input-mask" data-input-mask data-mask="{mask: 00/00/0000}" placeholder="eg: 23/05/2014">

http://plnkr.co/edit/Kp3SYS0cbIfVm1gTwtE0?p=preview

请帮我解决这个问题。

4

1 回答 1

1

长度错误是因为 element.mask() 方法需要一个带有您要使用的掩码字符串的属性。(在本例中为“00/00/0000”)。所以你必须改变一些东西,首先是你的指令:

var app = angular.module('app', ['ngResource']);

app.directive('inputMask', function(){
    return {
        restrict: 'A',
        scope: {
          inputMask: '='
        },
        link: function(scope, element){
          element.mask(scope.inputMask.mask);
        }
    }
})

然后在 html 中,以便您可以在元素中设置掩码。

<input type="text" class="form-control" data-input-mask="{mask: '00/00/0000'}" placeholder="eg: 23/05/2014">

这是一个 Plunker 工作:

http://plnkr.co/edit/BbJtsF9mWx4n29CfZajF?p=preview

于 2015-05-26T19:57:28.940 回答