Tổng đài tư vấn: 033 688 8648
Hotline: 039 511 6390
Directive gọi hàm khi bấm phím enter trong AngularJS
Javacript
app.directive('myEnter', function () {
return function (scope, element, attrs) {
element.bind("keydown keypress", function (event) {
if(event.which === 13) {
scope.$apply(function (){
scope.$eval(attrs.myEnter);
});
event.preventDefault();
}
});
};
});
Html