$.ajax({
cache: false,
type: "POST",
url:'ajaxpost.php',
data:$('#form1').serialize(),// 你的formid
async: false,
error: function(request) {
alert("Connection error");
},
success: function(data) {
alert(data);
}
});