在Angularjs中获取ng-keypress上文本框的值

时间:2015-01-06 13:31:34

标签: javascript angularjs

我想在按键上获取文本框的值。

我有像

这样的HTML代码
<input style="width: 20%; float: right;" 
       ng-model="que.SelectedOptionsUID" 
       type="text" 
       ng-keypress="myFunct($event)"/>

我控制器上的JS代码:

$scope.myFunct = function (e) {
    var charCode = (e.which) ? e.which : e.keyCode;
    //i want here value of the textbox 
}

1 个答案:

答案 0 :(得分:6)

<input style="width: 20%; float: right;" 
       ng-model="que.SelectedOptionsUID" 
       type="text" 
       ng-keypress="myFunct($event, que.SelectedOptionsUID)"/>

控制器:

$scope.myFunct = function (e, myValue) {
    var charCode = (e.which) ? e.which : e.keyCode;        
    // do something with myValue
}