我已選擇頁面上的下拉菜單。我使用jQuery驗證插件來驗證該字段。但是,當更改所選下拉驗證不會被解僱。還有什麼方法可以在選擇的下拉列表中添加錯誤類。 fiddle驗證所選擇的更改菜單
$('.chosen').chosen()
$.validator.setDefaults({
submitHandler: function() {
return false
},ignore: ":hidden:not(select)"
});
$("#myform").validate({
onfocusout: function (element) {
$(element).valid();
},
rules: {
country:"required"
},
messages: {
country:"please choose country"
}
});
你看過[this](http://stackoverflow.com/questions/11232310/how-can-i-use-jquery-validation-with-the-chosen-plugin?rq=1)嗎? – Ryley
是的,我做到了。但是我想在用戶更改下拉值時觸發驗證 – Carlos