乐知付加密服务平台

如果你有资源, 平台可以帮你实现内容变现, 无需搭建知识付费服务平台。

点击访问官方网站 https://lezhifu.cc

扫码关注公众号 乐知付加密服务平台-微信公众号
js获取ip本机ip地址 | chenzuoli's blog

js获取ip本机ip地址

请求一个公共接口即可,详情请看:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
function getip() {
var ip = "";
var xhr = new XMLHttpRequest();
// false参数代表同步请求
xhr.open("GET", "https://api.ipify.org", false);
xhr.onreadystatechange = function() {
if(xhr.readyState === 4) {
if(xhr.status === 200) {
ip = xhr.responseText;
//买家ip
console.log(ip);
}else{
console.error(xhr.statusText);
}
}
};
xhr.send(null);
return ip;
}

好记性不如烂笔头。

-------------本文结束感谢您的阅读-------------