Ejemplo
Ejecutar una función cuando se envía el formulario:
<body ng-app="myApp" ng-controller="myCtrl">
<form ng-submit="myFunc()">
<input type="text">
<input type="submit">
</form>
<p>{{myTxt}}</p>
<script>
var app = angular.module("myApp",
[]);
app.controller("myCtrl", function($scope) {
$scope.myTxt
= "You have not yet clicked submit";
$scope.myFunc =
function () {
$scope.myTxt =
"You clicked submit!";
}
});
</script>
</body>
Inténtalo tú mismo " Definición y Uso
El ng-submit
directiva especifica una función que se ejecute cuando se envía el formulario.
Si el formulario no tiene una action
ng-submit
impedirá que la forma de ser presentado.
Sintaxis
<form ng-submit=" expression "></form>
Apoyado por el elemento <form>.
Los valores de los parámetros
Value | Description |
---|---|
expression | A function to be called when the form is being submitted, or an expression to be evaluated, which should return a function call. |