html中 gte https://4.ipw.cn/ 传入cn-ip
时间: 2025-01-04 08:01:10 浏览: 6
在HTML中,您可以使用JavaScript来获取用户IP地址并将其发送到指定的URL(例如:https://4.ipw.cn/)。以下是一个示例代码,展示了如何实现这一功能:
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>获取IP地址并发送</title>
</head>
<body>
<script>
async function getIPAndSend() {
try {
const response = await fetch('https://api.ipify.org?format=json');
const data = await response.json();
const ip = data.ip;
// 将IP地址发送到指定URL
await fetch('https://4.ipw.cn/', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ cn-ip: ip })
});
console.log('IP地址已发送:', ip);
} catch (error) {
console.error('获取IP地址或发送请求失败:', error);
}
}
// 调用函数
getIPAndSend();
</script>
</body>
</html>
```
在这个示例中,我们使用了`fetch` API来获取用户的公共IP地址,并将其发送到指定的URL `https://4.ipw.cn/`。请注意,发送IP地址的请求使用了POST方法,并且请求体中包含了JSON格式的数据。
阅读全文