我在一页上有多个表单,我在我的 CodeIgniter 应用程序中使用 ajax 来确定每次提交表单后显示哪些表单。无论如何,我已经用 id 标记了每个表单,因此我可以检查提交了哪个表单,并且我正在使用 ajax 重命名表单但是我需要一个默认表单名称,但我不确定我是如何做到这一点的?
$.ajax({
url:$(this).attr('action'),
type:'POST',
// this is where I have added a function to put in a default response
data:function(respond) {
if(respond.result == 'false') {
var form = "form#part-one";
} else {
var form = respond.form;
}
$(form).serialize(),
}
dataType:'json',
success:function(respond) {
if(respond.result == 'false') {
$('#error_messages').html(respond.errors);
} else {
$('#error_messages').html('');
}
}
});