Javascript password Strength Verification Code (two methods) _ javascript skills

Source: Internet
Author: User
To ensure the security of personal information on websites, many websites have set the password strength on the registration page. How can I use javascript to verify the password strength? The following section provides two methods to verify the code by using the javascript password strength. If you need the code, refer to the following:

The javascript password Strength Verification code is not mentioned in the specific implementation ideas. Please refer to the following code and demo.

Method 1:

/** Password security degree * return: all are letters or numbers, or the password length is less than * return: a combination of letters and numbers, special letters, or numbers and special characters * return: letters and numbers and special characters */String. prototype. passwordStrength = function () {if (this. length> & this. length <=) return; var n = (this. search (/[a-zA-Z]/)! = -)? :, N = (this. search (/[-]/)! = -)? :, N = (this. search (/[\~ \'\! \@\# \$ \%\^\\\\\ * \ (\) \_\+ \-\=\ [\] | {\}\;\'\: \"\,\. \// \<\>\?] {,}/)! = -)? :; Return n + n ;}

Demo

    
  Js password strength     

Security levelWeak, medium, and strong

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.