11
Envie o formulário pressionando Enter com AngularJS
Nesse caso específico, quais opções eu tenho para fazer com que essas entradas chamem uma função quando pressiono Enter? // HTML view // <form> <input type="text" ng-model="name" <!-- Press ENTER and call myFunc --> /> <br /> <input type="text" ng-model="email" <!-- Press ENTER and call myFunc --> /> </form> // …