angularJs中的form指令的使用

前端之家收集整理的这篇文章主要介绍了angularJs中的form指令的使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

首先我们来看看页面结构:

<html ng-app='TestFormModule'>
	<head>
		<Meta http-equiv="content-type" content="text/html; charset=utf-8" />
		<script src="framework/angular-1.3.0.14/angular.js"></script>
		<script src="FormBasic.js"></script>
	</head>
	<body>
		<form name="myForm" ng-submit="save()" ng-controller="TestFormModule">
				<!--其中required表示是必填选项-->
			  <input name="userName" type="text" ng-model="user.userName" required/>
			  <input name="password" type="password" ng-model="user.password" required/>
			  <!--最后的submit通过myForm.$invalid来进行判断是否可用-->
			  <input type="submit" ng-disabled="myForm.$invalid"/>
		</form>
	</body>
</html>
接下来我们看看controller中的内容
var appModule = angular.module('TestFormModule',[]);
//指定一个控制器TestFormModule
appModule.controller("TestFormModule",function($scope){
	$scope.user={
		userName:'liangklfang',password:''
	};
	$scope.save=function(){
		alert("保存数据!");
	}
});
其中这里我们要学会的还是form指令的用法,首先我们给form指定一个name为myForm,然后通过myForm.$invalid来判断是否显示最后的提交按钮。 只有当两个input输入框都有数据输入的时候提交按钮才可用。. 原文链接:https://www.f2er.com/angularjs/149563.html

猜你在找的Angularjs相关文章