javascript中如何用jQuery使validate验证表单成功后再执行自定义函数?

2024-11-25 11:48:53
推荐回答(1个)
回答1:

很简单。
$("#frmClient").validate({
rules: {
txtClientName: {
required: true,
minlength: 2
},
success: function(label) {
onSave();
}
});