8
keypressでテキストボックスの値を取得したいとします。ng-keypressのテキストボックスの値をAngularjsで取得する
私は私のコントローラ上の
<input style="width: 20%; float: right;"
ng-model="que.SelectedOptionsUID"
type="text"
ng-keypress="myFunct($event)"/>
とJSコードのようなHTMLコードがあります。
$scope.myFunct = function (e) {
var charCode = (e.which) ? e.which : e.keyCode;
//i want here value of the textbox
}
値が来ます"a"と入力するとnullになり、 "ab"と入力すると "a" –