我想使用Angular
链接验证电话号码。当用户写第12个号码时,请删除该号码。
但它第一次运行 第二次不运行, 并且第三次运行。
cardApp.directive('integer', function() {
return {
require : 'ngModel',
controller : function($scope, $element) {
},
link : function(scope, elm, attrs, ctrl) {
elm.bind("keyup",function(){
scope.phoneNumber = 881;
console.log("message");
})
scope.phoneNumber = 883;
// ctrl.$parsers.unshift(function(viewValue) {
// scope.phoneNumber = 881;
// });
// ctrl.$parsers.unshift(function(viewValue) {
// scope.phoneNumber = 882;
// });
}
};
});

非常感谢。