0

我使用“EasyJQuery”使用以下脚本检测用户的 IP 地址和其他信息:

<!-- Require jQuery / Anyversion --><script type="text/javascript" language="Javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<!-- Require EasyJQuery After JQuery --><script type="text/javascript" language="Javascript" src="http://api.easyjquery.com/easyjquery.js"></script>
<script type="text/javascript" language="Javascript">
    // 1. Your Data Here
    function my_callback(json) {
        alert("IP :" + json.IP + " nCOUNTRY: " + json.COUNTRY);
    }

    function my_callback2(json) {
        // more information at http://api.easyjquery.com/test/demo-ip.php
        alert("IP :" + json.IP + " nCOUNTRY: " + json.COUNTRY + " City: " + json.cityName + " regionName: " + json.regionName);
    }

    // 2. Setup Callback Function
   // EasyjQuery_Get_IP("my_callback"); // fastest version
    EasyjQuery_Get_IP("my_callback2","full"); // full version
</script>

现在它不再工作了。官方页面现在重定向到:ip.codehelper.io并且 Github 库只有 PHP 版本而不是 Javascript 版本。

那么这个库真的不再支持了吗?如果有,有没有类似的?

先感谢您。

4

2 回答 2

3

从您链接到的页面:

// First, embed this script in your head or at bottom of the page.
<script src="http://www.codehelper.io/api/ips/?js"></script>
// You can use it
<script>
    alert(codehelper_ip.IP);
    alert(codehelper_ip.Country);
</script>

或者像这样的东西可能会更好:

$.getJSON('http://www.codehelper.io/api/ips/?js&callback=?', function(response) {
    console.log(response.IP, response.Country, response.CityName);
})
于 2013-09-26T19:52:09.500 回答
1
$.ajax({ 
            url: '//freegeoip.net/json/', 
            type: 'POST', 
            dataType: 'jsonp',
            success: function(location) {
               console.log(location);
              }
        });
于 2015-12-03T11:47:55.417 回答