Enables binding angular expressions to onsubmit events.
Additionally it prevents the default action (which for form means sending the request to the
server and reloading the current page), but only if the form does not contain action
,
data-action
, or x-action
attributes.
ngClick
and
ngSubmit
handlers together. See the
form
directive documentation
for a detailed discussion of when ngSubmit
may be triggered.
<form
ng-submit="expression">
...
</form>
Param | Type | Details |
---|---|---|
ngSubmit | expression |
Expression to eval.
(Event object is available as |
<script>
angular.module('submitExample', [])
.controller('ExampleController', ['$scope', function($scope) {
$scope.list = [];
$scope.text = 'hello';
$scope.submit = function() {
if ($scope.text) {
$scope.list.push(this.text);
$scope.text = '';
}
};
}]);
</script>
<form ng-submit="submit()" ng-controller="ExampleController">
Enter text and hit enter:
<input type="text" ng-model="text" name="text" />
<input type="submit" id="submit" value="Submit" />
<pre>list={{list}}</pre>
</form>