使用ajax从跨域获取数据时出错

时间:2013-12-26 10:40:47

标签: php jquery json

当我尝试使用跨域的JSON获取数据时,我遇到了这种错误"Error: jQuery1910031708905171111246_1388038501367 was not called"

我正在使用ajax回调功能,而我的jQuery版本是1.9.1。

$.ajax({  
                    type: "GET",
                    url: 'my url',                  //the script to call to get data         
                    jsonp: "callback",
                    dataType: 'jsonp', //data format 
                    timeout: 10000,
                    success: function(data)          //on recieve of reply
                    {
                                var id = data[0];              //get id
                                var vname = data[1];           //get name

                         $('#output').html("<b>id: </b>"+id+"<b> name: </b>"+vname);     //Set output element html
                    },
                    error: function (request, status, error) {
                        alert(error);
                    }
                });

0 个答案:

没有答案