Neueste Web-Entwicklung Tutorials
 

AngularJS ng-Richtlinie vorlegen


Beispiel

Führen Sie eine Funktion, wenn das Formular abgeschickt wird:

<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>
Versuch es selber "

Definition und Verwendung

Die ng-submit Direktive gibt eine Funktion auszuführen , wenn das Formular abgeschickt wird.

Wenn das Formular keine hat action ng-submit wird das Formular verhindern vorgelegt.


Syntax

<form ng-submit=" expression "></form>

Unterstützt durch das Element <form>.


Parameterwerte

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.