获取当前国家与ip地址

Posted 爛轲

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取当前国家与ip地址相关的知识,希望对你有一定的参考价值。

JS获取当前国家示例:

<script src="http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=js"></script>
    <script>
        $(function () {
            var name = remote_ip_info["country"];
            document.getElementById("guojia").value = name;

        })
     </script>
<input style="display:none" id="guojia" name="country" value="" />

 

C#获取ip地址:

//获取当前IP
        public string GetIp()
        {
            System.Net.WebClient client = new System.Net.WebClient();
            client.Encoding = System.Text.Encoding.Default;
            string reply = client.DownloadString("http://www.ip138.com/ip2city.asp");
            int start = reply.IndexOf("[");
            int end = reply.IndexOf("]");
            return reply.Substring((start + 1), (end - start - 1));
        }

  

以上是关于获取当前国家与ip地址的主要内容,如果未能解决你的问题,请参考以下文章

借助设备 IP 地址获取国家代码

如何通过IP地址获取国家代码和货币代码? [关闭]

如何在php中使用ip地址获取移动国家代码

将 IP 地址与国家/地区相关联[关闭]

通过网络请求获取当前IP,并得到大致位置

当用户在 Google 地图中拒绝位置访问时,如何向用户显示当前国家/地区?