jQuery 密碼驗(yàn)證

2018-12-12 14:46 更新

jQuery Password Validation(密碼驗(yàn)證)

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 來提供其他消息,比如本地化。

實(shí)例演示

<!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>


以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)