当用户在某个字段中输入内容时,是否有一种方法可以检查角色。
因此,当他们开始输入时,我可以做类似的事情:
console.log('the user has started');
答案 0 :(得分:1)
如果字段绑定到范围中的某个变量(例如foo
),则可以执行以下操作:
$scope.$watch('foo', function(value){
console.log('the user has started', value);
});
答案 1 :(得分:1)
您可以像这样使用ng-dirty
:
<form name="myform">
<span ng-show="myform.myinput.$dirty"> the user has started </span>
<input type="text" ng-model="mod" name="myinput" />
</form>
查看this