1 つのページに複数のフォームがあり、このような Ajaxform プラグインを介して送信しています
<td> <form> form1 </form> </td>
<td> <form> form2 </form> </td>
var options = {
target: '.ajaxMessage',
dataType: 'json', // pre-submit callback
success: function(data, statusText, xhr, form){ myResponse(data,form)},
context: { element: this},
cache: false,
delegation: true,
type: 'POST' };
$(".rform").ajaxForm(options);
私の AjaxSetup には、これがあります
beforeSend:function(xhr, settings){
$this = settings.context.element;
alert($this);
しかし、それは機能していません。アラートはウィンドウオブジェクトを示しています