2014-05-11 119 views
0

如何使用Ajax和jQuery模塊提交表單jQuery Modal Site。在這裏我的ajax:使用Ajax和jQuery提交表單Modal

$('#save').submit(function(event) { 
    event.preventDefault(); 
    $.ajax({ 
     data: $(this).serializeArray(), 
     type: $(this).attr('method'), 
     url: $(this).attr('action'), 
     success: function() { 
      $('#message').html("Success").modal(); 
     } 
    }); 
    return false; 
}); 

回答

0

你一定要提到與序列化功能的形式ID,它會work..It不要緊,你的形式是模態對話框或頁面..是的,但如果你是在Iframe中打開表單比你必須使用不同的方法。

使用此行與數據屬性。 ()「#formId」)。serialize();

$('#save').submit(function(event) { 
    event.preventDefault(); 
    $.ajax({ 
     data: $("#formId").serialize(), 
     type: $(this).attr('method'), 
     url: $(this).attr('action'), 
     success: function() { 
      $('#message').html("Success").modal(); 
     } 
    }); 
    return false; 
});