Angular JS - 检查用户何时在某个字段中输入内容

时间:2013-11-27 12:16:29

标签: angularjs

当用户在某个字段中输入内容时,是否有一种方法可以检查角色。

因此,当他们开始输入时,我可以做类似的事情:

console.log('the user has started');

2 个答案:

答案 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