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