ng-submit
คำสั่งAngularJS
ตัวอย่าง
เรียกใช้ฟังก์ชันเมื่อส่งแบบฟอร์ม:
<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>
รองรับโดย <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. |