0

我在 php 或 html 文件中使用此代码进行重定向

<script language="JavaScript" src="http://j.maxmind.com/app/geoip.js"></script>

<script language="JavaScript">


var country= geoip_country_code();

if(country == "US" )
{
<!--
window.location = "http://google.com"

//-->
}

</script>

但我想使用一个执行相同功能但其扩展名应为 .js 的 js 文件

作为http://domain.com/redirect.js那么代码是什么?

4

1 回答 1

1

这包括一个带有回调的脚本包含函数,因此 Maxmind 客户端代码在 Maxmind 库加载之前不会运行。

loadScript("http://j.maxmind.com/app/geoip.js", function() {
    var country = geoip_country_code();

    if (country === "US") {
        window.location = "http://google.com/";
    }
});

function loadScript(url, callback) {
    // adding the script tag to the head as suggested before
   var head = document.getElementsByTagName('head')[0];
   var script = document.createElement('script');
   script.type = 'text/javascript';
   script.src = url;

   // then bind the event to the callback function 
   // there are several events for cross browser compatibility
   script.onreadystatechange = callback;
   script.onload = callback;

   // fire the loading
   head.appendChild(script);
}
于 2012-04-24T22:50:50.057 回答