JQuery Ajax jsonp

Posted 小石头

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JQuery Ajax jsonp相关的知识,希望对你有一定的参考价值。

 

 

  

$.ajax({
        method:"POST",
        url:"http://localhost:8081/ChenLei/PeopleServlet",
        data:{"userName":"zhangsan"},
        dataType:"jsonp",
        jsonpCallback:"callback",   //jsonpCallback是实现跨域请求的时候定义回调函数用的
        success:function(data){
            alert(data.code);
            alert(data.message);
        },
        error:function(data){
        },
        complete:function(){
        }
    })

  

以上是关于JQuery Ajax jsonp的主要内容,如果未能解决你的问题,请参考以下文章

jquery Ajax 通过jsonp的方式跨域提交表单

jquery ajax jsonp 和 angularjs $http json 的区别

使用 jQuery 进行跨域 ajax JSONP 请求

使用 jQuery 进行跨域 ajax JSONP 请求

jQuery封装的ajax方法发送jsonp请求ajax全局事件restful风格的api获取XML数据

JQuery - $.ajax() - 使用 JSONP 的跨域 - 仅在 IE 8 中获取“解析器错误”(在 IE 7 中工作)