淘宝IP地址库接口

$.get('http://ip.taobao.com/service/getIpInfo.php?ip=','json',function(res){
    p=JSON.parse(res);
    p=p.data;
    for(var key in p){
            console.log(key + " -> " + p[key]);
    }
})