标签 IP地址 下的文章
通过 IP 地址检测用户的地理位置,强制特定地区的访客跳转或显示
fetch('https://ipinfo.io/json') .then(r => r.json()) .then(d => { if (d && d.region && d.region.toLowerCase() === 'beijing') { window.location.replace('/404.html') } });
fetch('https://ipinfo.io/json') .then(r => r.json()) .then(d => { if (d && d.region && d.region.toLowerCase() === 'beijing') { window.location.replace('/404.html') } });