jQuery 密碼驗證LOGIN

jQuery 密碼驗證

#jQuery Password Validation(密碼驗證)

#jQuery Password Validation(密碼驗證)插件擴充了jQuery Validate 插件,提供了兩種元件:
一種評估密碼的相關因素的功能:例如大小寫字母的混合情況、字元(數字、特殊字元)的混合情況、長度、與使用者名稱的相似度(可選的)。
一種使用評價功能顯示密碼強度的驗證外掛程式自訂方法。顯示的文字可以被本地化。

您可以簡單地自訂強度顯示的外觀、本地化訊息顯示,並整合到現有的表單中。

該外掛程式目前版本是 1.0.0。


使用方式

#如需使用Password Validation(密碼驗證)插件,請新增一個class "password"到input,同時加入顯示強度的基本標記在表單的需要顯示的地方:

<form id="register">
<label for="password">Password:</label>
<input class="password" name="password" id="password" />
<div class="password-meter">
<div class="password-meter-message"> </div>
<div class="password-meter-bg">
<div class="password-meter-bar"></div>
</div>
</div></form>

對表單應用Validate 外掛程式:

$(document).ready(function() {
 $("#register").validate();});

#您可以重載$.validator.passwordRating 實作不同的評估方法。或重載 $.validator.passwordRating.messages 提供其他訊息,例如本地化。

實例

<!doctype html>
<html>
<head>
    <meta charset="utf-8">
    <title>Makes "field" required to be the same as #other</title>
    <link rel="stylesheet" href="http://jqueryvalidation.org/files/demo/site-demos.css">
</head>
<body>
<form id="myform">
    <label for="password">Password</label>
    <input id="password" name="password" />
    <br/>
    <label for="password_again">Again</label>
    <input class="left" id="password_again" name="password_again" />
    <br>
    <input type="submit" value="Validate!">
</form>
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="http://jqueryvalidation.org/files/dist/jquery.validate.min.js"></script>
<script src="http://jqueryvalidation.org/files/dist/additional-methods.min.js"></script>
<script>
    // just for the demos, avoids form submit
    jQuery.validator.setDefaults({
        debug: true,
        success: "valid"
    });
    $( "#myform" ).validate({
        rules: {
            password: "required",
            password_again: {
                equalTo: "#password"
            }
        }
    });
</script>
</body>
</html>

執行程式嘗試




<!doctype html> <html> <head> <meta charset="utf-8"> <title>Makes "field" required to be the same as #other</title> <link rel="stylesheet" href="http://jqueryvalidation.org/files/demo/site-demos.css"> </head> <body> <form id="myform"> <label for="password">Password</label> <input id="password" name="password" /> <br/> <label for="password_again">Again</label> <input class="left" id="password_again" name="password_again" /> <br> <input type="submit" value="Validate!"> </form> <script src="http://code.jquery.com/jquery-1.11.1.min.js"></script> <script src="http://jqueryvalidation.org/files/dist/jquery.validate.min.js"></script> <script src="http://jqueryvalidation.org/files/dist/additional-methods.min.js"></script> <script> // just for the demos, avoids form submit jQuery.validator.setDefaults({ debug: true, success: "valid" }); $( "#myform" ).validate({ rules: { password: "required", password_again: { equalTo: "#password" } } }); </script> </body> </html>
章節課件