美文网首页
Ajax写法解释

Ajax写法解释

作者: 前端大鹏 | 来源:发表于2017-08-08 16:31 被阅读0次

    $.ajax({

    //提交数据的类型 POST GET

    type: "post",

    //提交的网址

    url: "xxxx.php",

    //提交的数据

    data: {"username":"admin", "passwd":"123456"},

    //返回数据的格式

    datatype: "json",//"xml", "html", "script", "json", "jsonp", "text".

    //规定请求是否异步(默认异步)

    async: true,

    //在请求之前调用的函数

    beforeSend: function(){

    //一般请求前让loading的gif显示出来

    $("#loading").show();

    },

    //成功返回之后调用的函数

    success: function(data){

    },

    //调用执行后调用的函数

    complete: function(XMLHttpRequest, textStatus){

    //一般请求完成让loading的gif隐藏

    $("#loading").hide();

    },

    //调用出错执行的函数

    error: function(){

    //请求出错处理

    }

    });

    相关文章

      网友评论

          本文标题:Ajax写法解释

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