根据地区调用javascript函数

时间:2015-03-27 12:11:59

标签: javascript jquery css

如果页面在印度加载,可以告诉我如何调用一个javascript函数,如果在其他国家/地区加载页面,可以调用另一个javascript函数。

1 个答案:

答案 0 :(得分:0)

为此你需要获得访客地区。本代码可以帮助您找到它。 Reffer

<script type="text/javascript" src="http://www.google.com/jsapi?key=API_KEY_GOES_HERE"></script>

然后是主脚本

    <script type="text/javascript">
    if(google.loader.ClientLocation)
    {
        visitor_lat = google.loader.ClientLocation.latitude;
        visitor_lon = google.loader.ClientLocation.longitude;
        visitor_city = google.loader.ClientLocation.address.city;
        visitor_region = google.loader.ClientLocation.address.region;
        visitor_country = google.loader.ClientLocation.address.country;
        visitor_countrycode = google.loader.ClientLocation.address.country_code;
        document.getElementById('yourinfo').innerHTML = '<p>Lat/Lon: ' + visitor_lat + ' / ' + visitor_lon + '</p><p>Location: ' + visitor_city + ', ' + visitor_region + ', ' + visitor_country + ' (' + visitor_countrycode + ')</p>';
    }
    else
    {
        document.getElementById('yourinfo').innerHTML = '<p>Whoops!</p>';
    }
</script>

在此之后找到您的客户端Region按区域名称调用JavaScript。

  1. 国家的商店价值。
  2. 调用您想要调用的JavaScript函数。 Reffer