2012-01-13 66 views

回答

1

嘗試使用jQuery post

$.post("post_your_data_to_this_site.php", $("#idOfYourForm").serialize(), function(data) { 
    // add result of post_your_data_to_this_site.php into div 
    $('#yourSubDivId').html(data); 
}); 

如果這不是爲你工作,請解釋原因時產生創建的文件。

Regards

相關問題