在mootools中,我会做类似$('form_id').send({success:function(res){....}}); jQuery中的并行语法是什么?
$('form_id').send({success:function(res){....}});
换句话说: 如何将表单数据(假设id =’bob’)放入以下代码中
$.ajax({ type: 'POST', url: url, data: data, success: success, dataType: dataType });
应该这样做:
$.ajax({ type: 'POST', url: url, data: $('#bob').serialize(), success: success, dataType: dataType });