angularjs通过ng-change和watch两种方式实现对表…
2018-09-01 05:49:23来源:博客园 阅读 ()
angularjs通过ng-change和watch两种方式实现对表单输入改变的监控
直接上练习代码
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> </head> <body ng-app="myApp" ng-controller="myContro"> <div> <h1>ng-change指令</h1> ng-change指令,当表单输入发生改变时,会触发该事件<br /> <div> 姓名:<input type="text" id="name1" ng-model="user.name" placeholder="请输入姓名" ng-change="inputChange()" /> </div> <div> 年龄:<input type="number" ng-model="user.age" placeholder="请输入年龄" ng-change="inputChange()" /> </div> <div>{{user.message}}</div> </div> <div> <h1>通过监听改变达到和ng-chang一样的效果</h1> <div> 姓名:<input type="text" id="name2" ng-model="user2.name" placeholder="请输入姓名" /> </div> <div> 年龄:<input type="number" ng-model="user2.age" placeholder="请输入年龄" /> </div> <div>{{user2.message}}</div> </div> </body> </html> <script src="../JS/angular.js"></script> <script type="text/javascript"> var app = angular.module("myApp", []); app.controller("myContro", function ($scope, $interpolate) { $scope.user = { name: "", age: "", message: "" }; $scope.user2 = { name: "", age: "", message: "" }; $scope.messageTemp = "{{name}},您好,您今年{{age}}岁啦!"; var template = $interpolate($scope.messageTemp); $scope.inputChange = function () { $scope.user.message = template({ name: $scope.user.name, age: $scope.user.age }); }; //// 下面通过watch监听实现ng-change一样的效果 $scope.$watch("user2.name", function (newValue, oldValue) { $scope.getMessage(newValue, oldValue); }); $scope.$watch("user2.age", function (newValue, oldValue) { $scope.getMessage(newValue, oldValue); }); $scope.getMessage = function (value1, value2) { if (value1 != value2) { $scope.user2.message = template({ name: $scope.user2.name, age: $scope.user2.age }); } } }); </script>
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
上一篇:vue里swiper的一些坑
- Vue input控件通过value绑定动态属性及修饰符的方法 2020-03-05
- 高效的获取当前元素是父元素的第几个子元素 2020-02-15
- AngularJS实现标签页的两种方式 2019-12-29
- textarea不能通过maxlength属性来限制字数的解决方法 2019-12-21
- 详解AngularJS 实现JavaScript 动画效果 2019-11-12
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash