예
양식이 제출 될 때 함수를 실행합니다 :
<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>
»그것을 자신을 시도 정의 및 사용
ng-submit
지시문은 양식이 제출 될 때 실행하는 기능을 지정합니다.
형태가없는 경우 action
ng-submit
제출되는 양식을 방지 할 수 있습니다.
통사론
<form ng-submit=" expression "></form>
의 <형식> 요소에 의해 지원됩니다.
매개 변수 값
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. |