电脑ip地址怎么看_查看本机外网IP

介绍

电脑ip地址在哪?访问本帖子可以直接查看你的电脑IP和地区

IP地址查看



如何在文章中插入以上查询结果代码

<iframe style="width: 360px; height: 100px;" src="https://www.ip.cn/api/index?ip&type=0" frameborder="0" scrolling="no"><span data-mce-type="bookmark" style="display: inline-block; width: 0px; overflow: hidden; line-height: 0;" class="mce_SELRES_start"></span></iframe>

 如何过滤代码

只想显示地区和IP,不想显示其他的代码则需要

1:创建一个JavaScript函数来调用API并处理结果。

function getVisitorIPAddress() {
    var xhr = new XMLHttpRequest();
    xhr.open("GET", "https://www.ip.cn/api/index?ip&type=0", true);
    xhr.onreadystatechange = function () {
        if (xhr.readyState === 4 && xhr.status === 200) {
            var response = JSON.parse(xhr.responseText);
            var ip = response.ip;
            var area = response.area;
            document.getElementById("visitor-ip").textContent = ip + " - " + area;
        }
    };
    xhr.send(null);
}

2:在您的HTML页面中添加一个<div>标签,用于显示IP和地区信息。

<div id="visitor-ip"></div>

3:调用JavaScript函数以获取并显示IP和地区信息。

<script>
    getVisitorIPAddress();
</script>

 

说明

文章中调用的接口是www.ip.cn提供的免费接口

也可以直接访问官网进行查询

官网

www.ip.cn
THE END