مثال
تشغيل دالة عند إرسال النموذج:
<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. |