我是 Jquery 的新手。我正在尝试使用 Jquery Post 将表单发布到 php 文件中,我在 php 文件中做了一个 var_dump($_POST) 但我只能看到一个空数组(使用 firebug net 看到),但我又回到了成功jQuery的功能。可能是我在做一些愚蠢的事情。除了这个问题之外,所有的 Javascript 行为都按预期工作。有人请帮忙
$(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;
});
});