19
如何在AngularJS中使用按键事件?
我想在下面的文本框中捕获Enter键按下事件。为了更清楚地说明,我使用a ng-repeat来填充tbody。这是HTML: <td><input type="number" id="closeqty{{$index}}" class="pagination-right closefield" data-ng-model="closeqtymodel" data-ng-change="change($index)" required placeholder="{{item.closeMeasure}}" /></td> 这是我的模块: angular.module('components', ['ngResource']); 我正在使用一种资源来填充表,而我的控制器代码是: function Ajaxy($scope, $resource) { //controller which has resource to populate the table }