私は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;
});
});