我正在尝试使用jQuery / AJAX提交表单数据,然后将值存储到通用可访问的数组中。我这样做是为了防止表单提交时出现页面重新加载问题,然后将表单数据存储到浏览器cookie中。
$(function() {
$("#form").submit(function() {
$.post("test.php", $(this).serialize(), function(data) {
//$("#form").after('<div>' + data + '</div>');
});
return false;
});
});
&#13;
<?php if (count($_POST)) print_r($_POST); else { ?>
<html>
<script src="https://code.jquery.com/jquery-1.11.3.js"></script>
<form id="form" action="" method="post">
First Name :
<input name="fname">Last Name :
<input name="lname">Address :
<input name="address">Contact No. :
<input name="contact">Country:
<input name="country">City:
<input name="city">
<input type="submit" id="btn-ser1" value="Serialize" />
</form>
</html>
<?php } print_r($_POST); ?>
&#13;