AngularJS中的ng-submit指令用于指定要在提交事件上运行的函数。如果表单不包含操作,则可用于阻止表单提交。它由<form>元素支持。
用法:
<form ng-submit="expression"> Content ... </form>
范例1:
<!DOCTYPE html>
<html>
<head>
<title>ng-submit Directive</title>
<script src=
"https://ajax.googleapis.com/ajax/libs/angularjs/1.4.2/angular.min.js">
</script>
</head>
<body ng-app="app" style="text-align:center">
<h1 style="color:green">GeeksforGeeks</h1>
<h2>ng-submit Directive</h2>
<div ng-controller="geek">
<form name="form1" ng-submit="save(this)" novalidate>
<label for="name">Enter Email:</label>
<input type="email" name="email" data-ng-model="email" required />
<br>
<span>{{errorMsg}}</span>
<br>
<input type="submit" value="Click it!">
</form>
</div>
<script>
var app = angular.module("app", []);
app.controller('geek', ['$scope', function ($scope) {
$scope.save = function ($this) {
if ($this.form1.email.$error.required) {
$scope.errorMsg = "This field is required";
}
else if ($this.form1.$invalid) {
$scope.errorMsg = "Email is not valid";
}
else {
$scope.errorMsg = "";
alert("The given Email is accepted.");
}
}
}]);
</script>
</body>
</html>
输出:
点击前:
点击后:
范例2:
<!DOCTYPE html>
<head>
<title>ng-submit Directive</title>
<script src=
"https://ajax.googleapis.com/ajax/libs/angularjs/1.4.2/angular.min.js">
</script>
</head>
<body ng-app="app" style="text-align:center">
<h1 style="color:green">GeeksforGeeks</h1>
<h2>ng-submit Directive</h2>
<div ng-controller="geek">
<form name="form" ng-submit="login()" ng-hide="isShow">
User Name:<input type="text" ng-model="users.user" required />
<br /><br />
<button ng-disabled="form.$invalid">Click to Login</button>
</form>
<br>
<pre ng-show="isShow">Welcome <b>{{name}}</b>
You are successfully login
</pre>
<input ng-show="isShow" type="button" value="Logout"
ng-click="isShow=false" />
</div>
<script>
var app = angular.module("app", []);
app.controller('geek', ['$scope', function ($scope) {
$scope.users = {
user:""
};
$scope.login = function () {
$scope.isShow = true;
$scope.name = $scope.users.user;
$scope.users = {
user:""
}
};
}]);
</script>
</body>
</html>
输出:
点击前:
点击后:
相关用法
- AngularJS ng-if用法及代码示例
- AngularJS ng-cut用法及代码示例
- AngularJS ng-value用法及代码示例
- AngularJS ng-src用法及代码示例
- AngularJS ng-app用法及代码示例
- AngularJS ng-csp用法及代码示例
- AngularJS ng-jq用法及代码示例
- AngularJS ng-required用法及代码示例
- AngularJS ng-bind用法及代码示例
- AngularJS ng-srcset用法及代码示例
- AngularJS ng-paste用法及代码示例
- AngularJS ng-style用法及代码示例
- AngularJS ng-selected用法及代码示例
注:本文由纯净天空筛选整理自Vishal Chaudhary 2大神的英文原创作品 AngularJS | ng-submit Directive。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。