$('form').ajaxForm
({
beforeSend: function()
{
// for example i need get current id form here how can ?
// codes
},
uploadProgress: function(event, position, total, percentComplete)
{
// codes
},
success: function()
{
// codes
},
complete: function(xhr)
{
// codes
}
});
我在页面中使用了 2 个不同 id 的表单。例如:
<form id="sample1"></form>
<form id="sample2"></form>
我需要在$('form').ajaxForm中获取当前表单 ID 。怎么能这样做?