网站简要介绍

这个网站主要用于检测用户的设备类型(如Android、iPhone等)并根据设备类型对网站进行重定向。具体来说,它会检查用户的来源网址和当前访问的主机名,然后根据这些信息判断用户是否来自特定的域名(www.ceeia.cn或ceeia.cn),以及用户设备的类型。

主要功能

  1. 输出当前页面的来源网址(document.referrer)和当前访问的主机名(window.location.host)。
  2. 如果来源网址为空且当前访问的主机名为www.ceeia.cn或ceeia.cn,则执行以下操作: a. 检查用户设备是否为Android设备,如果是,则根据主机名对网站进行重定向。如果主机名为ceeia.cn,将网址中的”ceeia”替换为”wap.ceeia”;否则,将网址中的”www.“替换为”wap.“。 b. 如果用户设备是iPhone或其他iOS设备,同样根据主机名对网站进行重定向。

使用示例

console.log(document.referrer); // 输出当前页面的来源网址
console.log(window.location.host); // 输出当前访问的主机名
if(document.referrer == '' && (window.location.host == 'www.ceeia.cn' || window.location.host == 'ceeia.cn')){
if(navigator.userAgent.match(/Android/i)) {
if(window.location.host == 'ceeia.cn'){
window.location.href = window.location.href.replace("ceeia","wap.ceeia");
}else{
window.location.href = window.location.href.replace("www.","wap.");
}
}
if ((navigator.userAgent.indexOf('iPhone') != -1) || (navigator.userAgent.indexOf('iPod') != -1) || (navigator.userAgent.indexOf('iPad') != -1)){
if(window.location.host == 'ceeia.cn'){
window.location.href = window.location.href.replace("ceeia","wap.ceeia");
}else{
window.location.href = window.location.href.replace("www.","wap.");
}
}
}