Posted in Javascript onFebruary 06, 2018
本文实例讲述了AngularJS实时获取并显示密码的方法。分享给大家供大家参考,具体如下:
1、设计源码
<!doctype html> <html> <head> <meta charset="utf-8"> <title>3water.com - AngularJS获取密码</title> <script type="text/javascript" src="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实时获取并显示密码的方法
- Author -
翱翔天地声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@