我是Jquery的新手。我試圖使用JQuery Post發佈一個表單到一個PHP文件,我在PHP文件中做了一個var_dump($ _ POST),但我只能看到一個空數組(看到使用螢火蟲淨),但我回到成功Jquery的功能。可能是我在做一些愚蠢的事情。除了這個問題,所有的Javascript行爲都按預期工作。有人請幫助Ajax POST無法使用Jquery和PHP
$(document).ready(function() {
//if submit button is clicked
$('#submit').click(function() {
//show the loading sign
$('#example').modal('show') ;
//start the ajax
$.ajax({
//this is the php file that processes the data
url: "mvc/process_form.php",
//GET method is used
type: "POST",
//Do not cache the page
cache: false,
//success
success: function (html) {
//if process_form.php returned 1/true (process success)
if (html==1) {
//hide the form
$('.form').fadeOut('slow');
//show the success message
$('.done').fadeIn('slow');
//if process.php returned 0/false (send mail failed)
} else alert('Sorry, unexpected error. Please try again later.');
}
});
//cancel the submit button default behaviours
return false;
});
});
謝謝你的時間..它真的幫了我 – Codemator
歡迎@Renjith – GBD