我使用jquery Form Plugin,方法" ajaxSubmit"
var options = {
delegation: true,
success: myResponse,
url: form_save_url,
type: 'post'
};
$('#myform').ajaxSubmit(options);
然后我有处理响应的方法
function myResponse(responseText, statusText, xhr, $form) {
alert('Response caught!');
}
此外,我需要传递一些参数
var options = {
delegation: true,
success: myResponse,
url: form_save_url,
type: 'post'
/* !!HERE I NEED TO PASS A PARAMETER!! /*
};
$('#myform').ajaxSubmit(options);
我应该能够阅读
function myResponse(responseText, statusText, xhr, $form, PARAMETER) {
alert('Response caught!');
alert(PARAMETER);
}
是否有可能实现这一目标? 谢谢