大家好,我正在尝试使用 jQuery Form Plugin 提交带有文件的表单,并且我正在使用 HTML5 属性验证表单,这就是我添加“event.preventDefault();”的原因
问题是,它不起作用,也没有显示任何错误消息。
这是代码
function showResponse(responseText){
alert(responseText);
}
function beforeSub(){
alert("called");
}
$('#prodFormBtn').click(function(){
$("#addProductForm").ajaxForm({
beforeSubmit: beforeSub,
success: showResponse
}).submit(function(e){
e.preventDefault();
});