当我想在加载函数调用中显示它时,jquery验证不起作用。
$(document).on("click","#add_accounts",function(){
$("#content-container").load("pages/add_account.php",function(){
$('#add_account').validate({
highlight: function (input) {
$(input).parents('.form-line').addClass('error');
},
unhighlight: function (input) {
$(input).parents('.form-line').removeClass('error');
},
errorPlacement: function (error, element) {
$(element).parents('.input-group').append(error);
}
});
});
});