本文实例讲述了AngularJS实时获取并显示密码的方法。分享给大家供大家参考,具体如下:
1、设计源码
<!doctype html> <html> <head> <meta charset="utf-8"> <title> - AngularJS获取密码</title> <script type="text/javascript" src="https://www.jb51.net/angular.min.js"></script> </head> <body> <div ng-app=""> <p>密码:<input type="password" ng-model="password" maxlength="12"></p> <p ng-bind="password"></p> </div> </body> </html>
2、实现结果
3、实例说明
当输入框中输入“123456”,下面也跟着显示“123456”;绑定式显示
更多关于AngularJS相关内容感兴趣的读者可查看本站专题:《AngularJS指令操作技巧总结》、《AngularJS入门与进阶教程》及《AngularJS MVC架构总结》
希望本文所述对大家AngularJS程序设计有所帮助。
您可能感兴趣的文章: