如果您想让HTML网页显示访客的IP地址,可以使用以下代码:
HTML:
<!DOCTYPE html>
<html>
<head>
<title>获取访客IP地址</title>
<meta charset="UTF-8">
</head>
<body>
<p>您的IP地址是: <span id="ip"></span></p>
<script>
// 使用免费的ipify API获取访客的IP地址
fetch('https://api.ipify.org/?format=json')
.then(response => response.json())
.then(data => {
document.getElementById('ip').textContent = data.ip;
})
.catch(error => console.error(error));
</script>
</body>
</html>