W3Cschool
恭喜您成為首批注冊(cè)用戶
獲得88經(jīng)驗(yàn)值獎(jiǎng)勵(lì)
jQuery Password Validation(密碼驗(yàn)證)插件擴(kuò)展了 jQuery Validate 插件,提供了兩種組件:
一種評(píng)價(jià)密碼的相關(guān)因素的功能:比如大小寫字母的混合情況、字符(數(shù)字、特殊字符)的混合情況、長(zhǎng)度、與用戶名的相似度(可選的)。
一種使用評(píng)價(jià)功能顯示密碼強(qiáng)度的驗(yàn)證插件自定義方法。顯示的文本可以被本地化。
您可以簡(jiǎn)單地自定義強(qiáng)度顯示的外觀、本地化消息顯示,并集成到已有的表單中。
該插件目前版本是 1.0.0。
如需使用 Password Validation(密碼驗(yàn)證)插件,請(qǐng)?zhí)砑右粋€(gè) class "password" 到 input,同時(shí)添加顯示強(qiáng)度的基本標(biāo)記在表單的需要顯示的地方:
<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>
對(duì)表單應(yīng)用 Validate 插件:
$(document).ready(function() { $("#register").validate();});
您可以重載 $.validator.passwordRating 實(shí)現(xiàn)不同的評(píng)價(jià)方法?;蛘咧剌d $.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" rel="external nofollow" target="_blank" > </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" rel="external nofollow" ></script><script src="http://jqueryvalidation.org/files/dist/jquery.validate.min.js" rel="external nofollow" ></script><script src="http://jqueryvalidation.org/files/dist/additional-methods.min.js" rel="external nofollow" ></script><script>// just for the demos, avoids form submitjQuery.validator.setDefaults({ debug: true, success: "valid"});$( "#myform" ).validate({ rules: { password: "required", password_again: { equalTo: "#password" } }}); </script> </body> </html>
Copyright©2021 w3cschool編程獅|閩ICP備15016281號(hào)-3|閩公網(wǎng)安備35020302033924號(hào)
違法和不良信息舉報(bào)電話:173-0602-2364|舉報(bào)郵箱:jubao@eeedong.com
掃描二維碼
下載編程獅App
編程獅公眾號(hào)
聯(lián)系方式:
更多建議: