我正在使用Parsley.js 2.0.0并尝试将其与Malsup jQuery表单插件一起使用。我无法弄清楚的是如何将两者合并以便Parsley首先运行验证,然后如果为true,则继续提交表单。
我在Form中看到了“beforeSubmit”选项,但无法弄清楚如何在Parsley中添加。
目前我的代码是:
$(document).ready(function() {
$('#contactus').ajaxForm({
target: '#statusResetResponse',
success: function () {
$.gritter.add({
title: "title",
text: "text here",
time: '2000'
});
return false;
}
});
});
提前感谢任何建议。