首页 > web前端 > js教程 > 正文

js获取本地ip和地区

一个新手
发布: 2017-10-12 09:48:22
原创
2892 人浏览过


<!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(&#39;你的ip所在地为:&#39; + 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[&#39;cip&#39;] + returnCitySN[&#39;cname&#39;]);
        console.log(returnCitySN);
    };    </script>
</body>

</html>
登录后复制

以上是js获取本地ip和地区 的详细内容。更多信息请关注PHP中文网其他相关文章!

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板