时间:2024-07-02
在你需要显示ip信息的地方插入以下代码
<div>
<span id="ip-address"></span>
<span id="location"></span></div>
然后在head标签插入以下代码
<script>
function IPCallBack(data) {
document.getElementById('ip-address').textContent = data.ip;
document.getElementById('location').textContent = data.pro + ' ' + data.city;
}</script><script src="https://whois.pconline.com.cn/ipJson.jsp"></script>
就可以了,样式请自行修改
Copyright © 2019-2024 2543.cn