gpt4 book ai didi

javascript - 基于位置的弹出窗口(特别是英国)

转载 作者:行者123 更新时间:2023-11-30 12:48:05 27 4
gpt4 key购买 nike

我有一个非常国际化的网站,但是我需要专门为我们的英国客户制作一个弹出窗口。

我需要的是:

在页面加载时:用户来自英国吗?

如果是,则显示 div。

否则

Div 保持隐藏状态。

最佳答案

您可以使用 freegeoip 执行此操作。既然你提到你想使用纯 JavaScript(而不是 jQuery),你应该使用 JSONP 来获取国家:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset=utf-8>
<title>UK localisation</title>
</head>
<body>

<div id="myDiv" style="display:none">
<h1>Kittens</h1>
</div>

<script>
function toggleDiv(content) {
console.log(content.country_code);
if(content.country_code === 'GB') //Or GBR, or UK, I'm not sure.
{
document.getElementById('myDiv').style.display = "inline";
}
else
{
alert("You are not from UK, you are from " + content.country_code);
document.getElementById('myDiv').style.display = "none";
}
}

window.onload = function()
{
// create script element
var script = document.createElement('script');
// passing src with callback name
script.src = 'http://freegeoip.net/json/?callback=toggleDiv';
// insert script to document and load content
document.body.appendChild(script);
}
</script>
</body>
</html>

关于javascript - 基于位置的弹出窗口(特别是英国),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21885470/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com