我想在按键上获取文本框的值。
我有像
这样的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
}
答案 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
}