11
Envíe el formulario al presionar Enter con AngularJS
En este caso particular, ¿qué opciones tengo para hacer que estas entradas llamen una función cuando presiono 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> // Controller …