使用角度链接来验证表单

时间:2015-08-22 10:24:35

标签: javascript angularjs

我想使用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;
			// });
		}
	};
});




非常感谢。

0 个答案:

没有答案