jquery getJSON IP

时间:2009-09-02 23:00:15

标签: javascript jquery

我正在尝试将以下代码转换为使用jquery:

var req = new XMLHttpRequest(); 
  req.open('GET', 'http://jsonip.appspot.com', true); 
  req.onreadystatechange = function (e) { 
    if (req.readyState === 4) { 
      if(req.status === 200) {
        var ip = JSON.parse(req.responseText);
        alert(ip.address);
      } else { 
        alert("Error loading page\n"); 
      }
    } 
  }; 
  req.send(null); 

这个jquery片不起作用:

  $.getJSON("http://jsonip.appspot.com",
        function(data){
             alert( "Data Returned: " + data.ip);

        });

2 个答案:

答案 0 :(得分:7)

此主机支持JSONP自定义回调,因此您可以通过以下方式获得结果:

 $.getJSON("http://jsonip.appspot.com?callback=?",
    function(data){
       alert( "Data Returned: " + data.ip);
  });

检查上面的代码here

答案 1 :(得分:1)

试试这个:

$.getJSON('http://jsonip.appspot.com?callback=?', function(data) { 
    console.log( data.ip ); 
} );