我有一個頁面上的多個形式,我很喜歡這個如何使用jQuery的使用上下文變量ajaxSetup
<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通過給ajaxForm插件提交他們,我有這個
beforeSend:function(xhr, settings){
$this = settings.context.element;
alert($this);
但它不工作,警告說window對象
''是你的實際標籤,還是僅僅是一個例子? –
Daedalus
只是其中的例子 – user825904
請發表您的其他代碼。 – Daedalus