js获取本地ip和地区

2018-06-24 00:27:56来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>

<body>
    <script type="text/javascript" charset="utf-8">
    function get_ip(cb) {
        var script = document.createElement("script"),
            s = document.getElementsByTagName("script")[0];
        script.src = "http://int.dpool.sina.com.cn/iplookup/iplookup.php?format=jsonp";
        s.parentNode.insertBefore(script, s);
        var it = setInterval(function() {
            if (!!remote_ip_info) {
                cb(remote_ip_info);
                remote_ip_info = null;
                clearInterval(it);
                it = null;
            }
        }, 100);
    }
    get_ip(function(info) {
        alert('你的ip所在地为:' + info.country + info.province + info.city);
    });
    </script>
</body>

</html>
<!doctype html>
<html>

<head>
    <meta charset="utf-8">
    <title>t1</title>
    <meta content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0" name="viewport">
</head>
<body>
    <h1>点击获取ip</h1>
    <br>
    <button class="xxx-btn" onclick="aa()">click me</button>
    <script src="http://pv.sohu.com/cityjson?ie=utf-8"></script>
    <script>
    function aa() {  
        alert(returnCitySN['cip'] + returnCitySN['cname']);
        console.log(returnCitySN);
    };
    </script>
</body>

</html>

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:三点运算符使用方法

下一篇:自定义插入子串、删除子串、替换子串函数