我包括流行的文件 jquery.form.js。我有以下内容:
var options = {
beforeSubmit: beforeSubmit, // pre-submit callback
success: afterSubmit // post-submit callback
};
$('#myForm').submit(function (e) {
$(this).ajaxSubmit(options);
return false;
});
function afterSubmit(responseText, statusText, xhr, $form) {
// i want to check for an error
}
我称这个动作为:
[HttpPost]
public string UploadDocument(DocumentModel model)
{
if (noerror)
return "ok";
else
return "the error";
}
在参数 'responseText, statusText, xhr, $form' 的某个地方存储了返回字符串。
我的返回字符串存储在哪里,或者我如何存储它,以便在调用 'afterSubmit' javascript 函数时检查结果?谢谢