根据浏览者的IP切换成不同语言,新浪网易IP地区信息查询API接口调用方法
工作需求,要根据浏览者的IP切换成不同语言的页面,记了下面的代码。
主要是获取IP对应的地区,用的是新浪的IP查询接口。
<script src="http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js"></script><script type="text/javascript">//format参数设置返回格式 js/json//ip 要查询IP 可选//反回格式如下://var remote_ip_info = {"ret":1,"start":"117.89.35.0","end":"117.89.35.255","country":"\u4e2d\u56fd","province":"\u6c5f\u82cf","city":"\u5357\u4eac","district":"\u767d\u4e0b","isp":"\u7535\u4fe1","type":"","desc":""};console.log(remote_ip_info["country"]+’,'+remote_ip_info["province"]+"省"+’,'+remote_ip_info["city"]+"市")//中国,江苏省,南京市</script>