美文网首页
ajax知识

ajax知识

作者: Es__ | 来源:发表于2018-09-24 19:37 被阅读0次

    $.ajax使用方法

    常用参数:
    1、url 请求地址
    2、type 请求方式,默认是'GET',常用的还有'POST'
    3、dataType 设置返回的数据格式,常用的是'json'格式,也可以设置为'html'
    4、data 设置发送给服务器的数据
    5、success 设置请求成功后的回调函数
    6、error 设置请求失败后的回调函数
    7、async 设置是否异步,默认值是'true',表示异步

    $.ajax({
        url: 'js/user.json',
        type: 'GET',
        dataType: 'json',
        data:{'aa':1}
    })
    .done(function(data) {
        ......
    })
    .fail(function() {
        alert('服务器超时,请重试!');
    });
    

    相关文章

      网友评论

          本文标题:ajax知识

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