//通过调用新浪IP地址库接口查询用户当前所在国家、省份、城市、运营商信息
$.getScript('http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js',function(){
alert(remote_ip_info.country);//国家
alert(remote_ip_info.province);//省份
alert(remote_ip_info.city);//城市
alert(remote_ip_info.isp);//运营商
});
//通过调用QQIP地址库接口查询本机当前的IP地址
$.getScript('http://fw.qq.com/ipaddress',function(){
alert(IPData[0]); //ip地址
});
}); |