文档说data是被请求页面的数据,那被请求页面是哪个页面

实例
$("button").click(function(){
    $.post("/try/ajax/demo_test_post.php",
    {
        name:"菜鸟教程",
        url:"http://www.runoob.com"
    },
        function(data,status){
        alert("数据: \n" + data + "\n状态: " + status);
    });
});

成长前端初学者
浏览 891回答 1
1回答

cxxyjsj

post回调方法中的第一个参数表示请求响应的内容。实际上就是/try/ajax/demo_test_post.php的响应内容。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JQuery