当我尝试使用跨域的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);
}
});