美文网首页我爱编程
复习jQuery - ajax

复习jQuery - ajax

作者: Hassd | 来源:发表于2018-06-11 10:05 被阅读0次

jQuery ajax - ajax() 方法

$.ajax({

    url:'oo.php',                            //发送请求的地址

    type: 'post',                            //请求方式有post和get两种

    data:{name:xxx,age:xxx},                //传输到服务器的数据

    dataType: 'json',                      //服务器返回的数据类型

    cache:true,                    //设置为 false 将不缓存此页面

    async:true,                    //如果需要发送同步请求,请将此选项设置为 false

    success:function(data){ 

        //请求成功函数内容 

    },

    error:function(jqXHR){        

        //请求失败函数内容   

    }

});

jQuery $.post() 方法

$.post("demo_test_post.asp",            //发送请求的地址

    {

        name:"Donald Duck",                //传输到服务器的数据

        city:"Duckburg"

    },

    function(data,status){                

        alert("Data: " + data + "\nStatus: " + status);        //data返回的数据、status返回状态

    },

    "json"                                 //服务器返回的数据类型

);

jQuery $.get() 方法

$.get("demo_test_post.asp",            //发送请求的地址

    {

        name:"Donald Duck",                //传输到服务器的数据

        city:"Duckburg"

    },

    function(data,status){                

        alert("Data: " + data + "\nStatus: " + status);        //data返回的数据、status返回状态

    },

    "json"                                 //服务器返回的数据类型

);

相关文章

网友评论

    本文标题:复习jQuery - ajax

    本文链接:https://www.haomeiwen.com/subject/reeceftx.html