如何使用jQuery写Ajax无刷新请求

$.ajax({

    url: 'request url 例如://http://www.baidu.com/OpenAPI/map?Id=10000',

    type: 'post',//请求方式,post,get

    dataType: 'text',//response data typ。相应数据的数据类型

     contentType: 'application/json; charset=GBK',//请求内容的编码格式

    success: function (data) {//成功相应数据

    },

    error:function(a,b){//异常处理

    }

});


你可能感兴趣的:(如何使用jQuery写Ajax无刷新请求)