gpt4 book ai didi

javascript - 在 geo div 中,如何添加 else show #other-country

转载 作者:行者123 更新时间:2023-11-28 05:45:23 25 4
gpt4 key购买 nike

在geo div中,如何添加else show {#other-country}?

如果 IP 是其他 IP,我希望隐藏 CN 和 HK。

<html>

<head>
<script type="text/javascript" src="jquery-1.11.0.min.js"></script>
<style>
#CN {
text-align: left;
color: blue;
display: none;
}
#HK {
text-align: left;
color: blue;
display: none;
}
#country_code {
text-align: left;
color: blue;
display: none;
}
</style>
</head>

<body>

<div id="HK">Hello HK</div>
<div id="CN">hello China</div>
<div id="other-country">Hello Other country</div>
<script>
$.get("http://freegeoip.net/json/", function(response) {
$("#country_code").html(response.country_code);
if (response.country_code == 'HK' || response.country_code == 'CN') {
document.getElementById(response.country_code).style.display = "block";
}

}

, "jsonp");
</script>
</body>

</html>

我还有一个问题,这个可以放在我自己的服务器上吗?

http://freegeoip.net/json/

最佳答案

给所有国家代码 div 一个公共(public)类。

<div id="HK" class="country-code">Hello HK</div>
<div id="CN" class="country-code">hello China</div>
<div id="other-country" class="country-code">Hello Other country</div>

$.get("http://freegeoip.net/json/", function(response) {
$("#country_code").html(response.country_code);
document.querySelectorAll(".country-code").style.display = "none";
if (response.country_code == 'HK' || response.country_code == 'CN') {
document.getElementById(response.country_code).style.display = "block";
}
else{
document.getElementById('other-country').style.display = "block";
}

}

, "jsonp");

关于javascript - 在 geo div 中,如何添加 else show #other-country,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37640536/

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