以下是用于处理我的表单的 ajax 标记:
$.ajax({
dataType: "json",
type: "get",
url: "ajax.php?action=add_driver",
data: $("#addDriver").serialize(),
beforeSend: function(){
$('.error, .success, .notice').remove();
},
success: function(json){
if (json['status']=='success')
{
alert(json['message']);
$("#addDriver").reset();
}else{
if(json['error']['my_variable']){
$("input[name=my_variable]").after('<div class="error">'+json['error']['my_variable']+'</div>');
}
$("#addDriver").reset();
}
});
我想知道的是,一旦提交,我将如何清除表格?我厌倦了使用$("#addDriver").reset();
,但它只是完全清除了表单而不提交表单。有什么帮助吗?