var options = {
//target: '#status', // target element(s) to be updated with server response
beforeSubmit: showRequest, // pre-submit callback
success: showResponse, // post-submit callback
dataType: 'json',
clearForm: false,
cache: false,
type: 'post'
};
$('form[name=form1]').submit(function() {
$('#form1').ajaxSubmit(options);
return false;
});
第一个表单使用此处声明的选项。
function showRequest(formData, jqForm, options) {
$('.process').hide();
}
这些是第一种形式。如果我使用第二种形式,我想将.process类更改为其他形式。那么,是否可以在通话期间将data:{}
附加到选项? (ajaxSubmit(options)
)//我可以在这里添加其他选项吗?所以我可以发送表单名称和类来隐藏。