我有一個註冊表單,我正在使用第三方庫來驗證輸入。這個庫爲驗證提供了非常好的和很酷的效果,但我需要進行另一次驗證以確保密碼和確認密碼匹配。我怎麼能通過jQuery來做到這一點?這裏是我的代碼:將jQuery中的兩個驗證合併爲密碼字段
<div class="form-group">
<label>Password</label>
<input type="password" class="form-control" name="password" />
</div>
<div class="form-group">
<label>Retype Password</label>
<input type="password" class="form-control" name="password2" />
</div>
和jQuery部分:
$('#registrationForm').formValidation({
framework: 'bootstrap',
fields: {
password: {
validators: {
notEmpty: {
message: 'The password is required'
}
}
},
password2: {
validators: {
notEmpty: {
message: 'Password conformation is required'
},
equalTo: {
field: 'password',
message: 'The password cannot be the same as username'
}
}
}
}
});
我應該把問號代替,以解決我的問題?或者,我可能完全錯誤的語法?
jQuery在哪裏?你在那裏有一個嵌套的對象文字。 –
你使用Validate.js嗎? –
不,我正在使用formvalidation.io – Amir