我想知道如何使用jQuery获取客户端IP地址?
有可能吗?我知道纯JavaScript不能,但是使用Stack Overflow本身的JSONP
得到了一些代码。
那么,有没有使用jQuery的解决方法?
答案 0 :(得分:55)
jQuery可以处理JSONP,只需传递一个使用callback =格式化的url? $.getJSON
方法的参数,例如:
$.getJSON("https://api.ipify.org/?format=json", function(e) {
console.log(e.ip);
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
此示例是使用api.ipify.org
实现的非常简单的JSONP服务。
如果您不是在寻找跨域解决方案,那么脚本可以进一步简化,因为您不需要回调参数,并返回纯JSON。
答案 1 :(得分:24)
对服务器进行简单的AJAX调用,然后使用服务器端逻辑来获取IP地址应该可以解决问题。
$.getJSON('getip.php', function(data){
alert('Your ip is: ' + data.ip);
});
然后在php中你可能会这样做:
<?php
/* getip.php */
header('Cache-Control: no-cache, must-revalidate');
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Content-type: application/json');
if (!empty($_SERVER['HTTP_CLIENT_IP']))
{
$ip=$_SERVER['HTTP_CLIENT_IP'];
}
elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR']))
{
$ip=$_SERVER['HTTP_X_FORWARDED_FOR'];
}
else
{
$ip=$_SERVER['REMOTE_ADDR'];
}
print json_encode(array('ip' => $ip));
答案 2 :(得分:2)
function GetUserIP(){
var ret_ip;
$.ajaxSetup({async: false});
$.get('http://jsonip.com/', function(r){
ret_ip = r.ip;
});
return ret_ip;
}
如果要使用IP并将其分配给变量,请尝试此操作。只需致电GetUserIP()
答案 3 :(得分:0)
<html lang="en">
<head>
<title>Jquery - get ip address</title>
<script type="text/javascript" src="//cdn.jsdelivr.net/jquery/1/jquery.min.js"></script>
</head>
<body>
<h1>Your Ip Address : <span class="ip"></span></h1>
<script type="text/javascript">
$.getJSON("http://jsonip.com?callback=?", function (data) {
$(".ip").text(data.ip);
});
</script>
</body>
</html>