JS 获取本机 IP 地址

JS 获取本地 ip 地址,可能部分浏览器无法使用。

JS 获取本机 IP 地址
<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>
<body>

</body>
<script type="text/javascript">
function getUserIP(onNewIP) { //  onNewIp - your listener function for new IPs
      //compatibility for firefox and chrome
      var myPeerConnection = window.RTCPeerConnection || window.mozRTCPeerConnection || window.webkitRTCPeerConnection;
      var pc = new myPeerConnection({iceServers: []
     }),
     noop = function() {},
     localIPs = {},
     ipRegex = /([0-9]{1,3}(\.[0-9]{1,3}){3}|[a-f0-9]{1,4}(:[a-f0-9]{1,4}){7})/g,
     key;

     function iterateIP(ip) {if (!localIPs[ip]) onNewIP(ip);
         localIPs[ip] = true;
    }

      //create a bogus data channel
     pc.createDataChannel("");

     // create offer and set local description
     pc.createOffer().then(function(sdp) {sdp.sdp.split('\n').forEach(function(line) {if (line.indexOf('candidate') < 0) return;
             line.match(ipRegex).forEach(iterateIP);
         });

         pc.setLocalDescription(sdp, noop, noop);
     }).catch(function(reason) {// An error occurred, so handle the failure to connect});

     //sten for candidate events
     pc.onicecandidate = function(ice) {if (!ice || !ice.candidate || !ice.candidate.candidate || !ice.candidate.candidate.match(ipRegex)) return;
         ice.candidate.candidate.match(ipRegex).forEach(iterateIP);
     };
}

// Usage

getUserIP(function(ip){alert("Got IP! :" + ip);
});

</script>
</html>

手机扫描二维码访问

本文标题:《JS 获取本机 IP 地址》作者:极四维博客
原文链接:https://cway.top/post/886.html
特别注明外均为原创,转载请注明。

分享到微信

扫描二维码

可在微信查看或分享至朋友圈。

下一篇: 安卓本地IP获取

相关文章

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

«    2024年10月    »
123456
78910111213
14151617181920
21222324252627
28293031

搜索

控制面板

您好,欢迎到访网站!
  查看权限

最新留言

文章归档

  • 订阅本站的 RSS 2.0 新闻聚合