码迷,mamicode.com
首页 > Web开发 > 详细

AngularJS 实现判断密码

时间:2017-11-26 18:46:57      阅读:231      评论:0      收藏:0      [点我收藏+]

标签:定义   --   ***   count   编写   sdi   control   引入   hal   

输入密码判断密码强度

安全强度:*低

安全强度:***中

安全强度:*****高

 

 

1.定义css样式

 <style type="text/css">
    .show-green{
    color: green;
    }
    .show-yellow{
    color: orange;
    }
    .show-red{
    color: red;
    }
    </style>

 

2.将样式引入输入框下的文字显示标签中,并将部分字符绑定show-{{teColor}}
将输入框绑定键盘弹起事件ng-keyup="checkPassword(password)

<input type="password" class="form-control" name="password" id="inputaccount" ng-model="password" ng-keyup="checkPassword(password)" placeholder="6-16位数字或英文字母">
<p class="text-right grey show-{{teColor}}" ng-bind="safeMsg"></p>---------------------------文字显示

 

3.编写控制器中的方法

//输入密码  键盘弹起事件 判断密码强度
$scope.checkPassword = function(password){
//$scope.safeMsg = "安全强度:*";
//$scope.teColor = "red";

//正则表达式判断密码强度
var lowTest1 = /^\d{1,6}$/; //纯数字
var lowTest2 = /^[a-zA-Z]{1,6}$/; //纯字母
var halfTest = /^[A-Za-z0-9]{1,6}$/;
var halfTest2 = /^[A-Za-z0-9]{6,8}$/;
var highTest = /^[A-Za-z0-9]{6,16}$/;
if(lowTest1.test(password)|lowTest2.test(password)|halfTest.test(password)){
$scope.safeMsg = "安全强度:*低";
$scope.teColor = "red";
}else if(halfTest2.test(password)){
$scope.safeMsg = "安全强度:***中";
$scope.teColor = "yellow";
}else if(highTest.test(password)){

$scope.safeMsg = "安全强度:*****高";
$scope.teColor = "green";
$scope.repassDis = "false";
}else{
$scope.safeMsg = "密码不符合要求";
$scope.teColor = "red";
}

};

 

AngularJS 实现判断密码

标签:定义   --   ***   count   编写   sdi   control   引入   hal   

原文地址:http://www.cnblogs.com/kaisens/p/7899694.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!