<div id="ip-location-widget" style="padding:15px;border:1px solid #eee;border-radius:8px;max-width:350px;margin:10px 0;">
<p style="margin:0 0 8px 0;font-weight:bold;">IP定位信息</p>
<script>
fetch("https://api.songzixian.com/api/ip")
.then(res=>res.json())
.then(data=>{
if(data.code===200){
const d=data.data;
document.getElementById("ip-location-widget").innerHTML+=`
<p>IP:${d.ip}</p>
<p>位置:${d.country}-${d.province}-${d.city}-${d.district}</p>
<p>运营商:${d.isp}</p>`;
}
});
</script>
</div>