在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
AngularJS 表单AngularJS 表单是输入控件的集合。 HTML 控件以下 HTML input 元素被称为 HTML 控件:
HTML 表单HTML 表单通常与 HTML 控件同时存在。 AngularJS 表单实例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> 尝试一下 »
实例解析AngularJS ng-model 指令用于绑定 input 元素到模型中。 模型对象 master 的值为 {"firstName" : "John", "lastName" : "Doe"}。 模型函数 reset 设置了模型对象 user 等于 master。 相关文章 |
请发表评论