AngularJS 表单是输入控件的集合。
以下 HTML input 元素被称为 HTML 控件:
HTML 表单通常与 HTML 控件同时存在。
function ExampleController($scope) { $scope.master = {"firstName":"John","lastName":"Doe"}; $scope.reset = function() { $scope.user = angular.copy($scope.master); }; $scope.reset(); };
First Name:
Last Name:
form = {{user}}
master = {{master}}
<div ng-app="" ng-controller="formController">
<form novalidate>
First Name:<br>
<input type="text" ng-model="user.firstName"><br>
Last Name:<br>
<input type="text" ng-model="user.lastName">
<br><br>
<button ng-click="reset()">RESET</button>
</form>
<p>form = {{user}}</p>
<p>master = {{master}}</p>
</div>
<script>
function formController ($scope) {
$scope.master = {firstName: "John", lastName: "Doe"};
$scope.reset = function() {
$scope.user = angular.copy($scope.master);
};
$scope.reset();
};
</script>
HTML 属性 novalidate 用于禁用浏览器的默认验证。 |
AngularJS ng-model 指令用于绑定 input 元素到模型中。
模型对象 master 的值为 {"firstName" : "John", "lastName" : "Doe"}。
模型函数 reset 设置了模型对象 user 等于 master。
HTML 表单