我正在使用下面的代碼爲我的js文件重定向..但我希望我的重定向基於頂部的位置。例如,如果有人訪問xyz.com,所以它重定向到mydomain.com,所以我需要添加什麼代碼?我認爲它可以像的indexOf(「xyz.com」)根據文檔位置從Js文件重定向
loadScript("http://j.maxmind.com/app/geoip.js", function() {
var country = geoip_country_code();
if (country === "US") {
window.location = "http://mydomain.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);
}
更換
我覺得至少在Java和PHP標籤不適合此問題。另外,可能是html標籤 – jpm