实例
$("button").click(function(){
$.post("/try/ajax/demo_test_post.php",
{
name:"菜鸟教程",
url:"http://www.runoob.com"
},
function(data,status){
alert("数据: \n" + data + "\n状态: " + status);
});
});
文檔說data是被請求頁面的數(shù)據(jù),那被請求頁面是哪個(gè)頁面
成長前端初學(xué)者
2017-10-21 22:33:50