是否可以发送跨域URL请求并使用JSONP读取响应?
你可以给我一些样品吗?我正在尝试使用xhr将URL请求发送到其他域但无法读取响应
请帮忙
先谢谢
答案 0 :(得分:4)
您可以查看打击示例:
$(document).ready(function(){
$.ajax({ // ajax call starts
//crossOrigin: true,
type: "GET",
url: 'http://www.google.com', // JQuery loads areas
dataType: 'json', // Choosing a JSON datatype
async: false,
success: function(data) // Variable data contains the data we get from serverside
{
console.log(data);
}
});
});