美文网首页
jsonp跨域请求地址信息(高程三例子)

jsonp跨域请求地址信息(高程三例子)

作者: 不要变成发抖的小喵喵喵喵喵喵 | 来源:发表于2017-08-23 19:05 被阅读0次
//jsonp
function handleResponse(response){
    console.log('IP address',response);
    console.log("You're at IP address " + response.ip + ',which is in '+ response.city+', '+ response.region_name);
}
var script = document.createElement('script');
script.src = 'http://freegeoip.net/json/?callback=handleResponse';
document.body.insertBefore(script,document.body.firstChild);
console

相关文章

网友评论

      本文标题:jsonp跨域请求地址信息(高程三例子)

      本文链接:https://www.haomeiwen.com/subject/gijjdxtx.html