文章參考自:鏈接
1. jQuery $.get() 方法
$.get(URL,callback);
示例:
$(document).ready(function(){
$("button").click(function(){
$.get("/try/ajax/demo_test.php",function(data,status){
alert("數(shù)據(jù): " + data + "\n狀態(tài): " + status);
});
});
});
2. jQuery $.post() 方法
$.post(URL,data,callback);
示例:
$(document).ready(function(){
$("button").click(function(){
$.post("/try/ajax/demo_test_post.php",{
name:"菜鳥教程",
url:"http://www.runoob.com"
},
function(data,status){
alert("數(shù)據(jù): \n" + data + "\n狀態(tài): " + status);
});
});
});