我试图停止默认事件,然后在运行几个函数后执行它。但它不起作用
$(#form_id).submit(function(event){
event.preventDefault();
get_hours(); // the function that i need to call
document.form_name.submit();
});
但在 get_hours(); 可以执行,表单已经提交。我该如何进行这项工作。请帮忙
我试图停止默认事件,然后在运行几个函数后执行它。但它不起作用
$(#form_id).submit(function(event){
event.preventDefault();
get_hours(); // the function that i need to call
document.form_name.submit();
});
但在 get_hours(); 可以执行,表单已经提交。我该如何进行这项工作。请帮忙