答案 0 :(得分:3)
$.ajax({
'type' : 'POST',
'url' : '/my_great_ashx_file.ashx',
'data' : {
'first_field' : 'foo',
'second_field' : 'bar',
'third_field' : 'buz'
},
'success' : function () {
alert('This was a triumph.');
}
})
答案 1 :(得分:2)
$.post("test.php", { name: "John", time: "2pm" },
function(data) {
alert("Data Loaded: " + data);
});