我正在使用表单验证插件 HTML5FORM (http://www.matiasmancini.com.ar/jquery-plugin-ajax-form-validation-html5.html) 但我需要在表单被检查并且一切正常后运行一些东西好的。
我应该如何进行?
这是验证脚本:
$(document).ready(function(){
$('#form_lista').html5form({
responseDiv:'#response2',
method: 'post',
messages: 'br',
colorOn:'#6b6764',
colorOff:'#000000',
allBrowsers:true
});
});
我的按钮是:
<input class="submit" type="submit" name="submit_second" id="submit_third" value="" />
当用户单击提交按钮时,我需要检查用户是否填写了表单的所有字段,如果没问题,我需要执行更新进度条和滑动步骤的脚本:
$('#submit_third').click(function(){
//update progress bar
$('#progress_text').html('100% Completo');
$('#progress').css('width','339px');
//slide steps
$('#third_step').slideUp();
$('#fourth_step').slideDown();
});