我使用下面的代码为我的js文件重定向..但我希望我的重定向基于顶部位置。例如,如果有人访问xyz.com,所以它重定向到mydomain.com所以我需要添加什么代码?我认为它可能像indexOf('xyz.com')
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);
}
答案 0 :(得分:0)
我不完全确定我理解你的问题,
window.location是一个始终引用当前显示的网页的对象。如您所知,您可以更改window.location并在浏览器中更改页面。
window.location还有几个有助于分析其内容的属性,请参阅引用的链接以获取更多详细信息。 window.location.host是我想要的那个。
因此,如果我正确理解您的问题,您可以替换
var country = geoip_country_code();
if (country === "US") {
window.location = "http://mydomain.com/";
}
与
if (window.location.host === 'xyz.com') {
window.location = "http://mydomain.com/";
}