当前位置: 首页 > Web与应用 > 正文

依照网易的yeah邮箱和手机版的网易邮箱照葫芦画瓢做了一个,使用如下这段js来通过浏览器User-Agent判断用户的类型并跳转到相应的版本页面去,实现了移动端和普通PC都能顺利认证。

<script type=”text/javascript”>
//判断浏览器User-Agent
function is_mobile() {
var regex_match = /(nokia|iphone|android|motorola|^mot-|softbank|foma|docomo|kddi|up.browser|up.link|htc|dopod|blazer|netfront|helio|hosin|huawei|novarra|CoolPad|webos|techfaith|palmsource|blackberry|alcatel|amoi|ktouch|nexian|samsung|^sam-|s[cg]h|^lge|ericsson|philips|sagem|wellcom|bunjalloo|maui|symbian|smartphone|midp|wap|phone|windows ce|iemobile|^spice|^bird|^zte-|longcos|pantech|gionee|^sie-|portalmmm|jigs browser|hiptop|^benq|haier|^lct|operas*mobi|opera*mini|320×320|240×320|176×220)/i;
var u = navigator.userAgent;
if (null == u) {
return true;
}
var result = regex_match.exec(u);
if (null == result) {
return false
} else {
return true
}
}
if (is_mobile()) {
document.location.href= ‘../mobile/login.html’;
}
</script>

上图看看。
Hotspot 2

Hotspot 1

[分享]ROS的HotSpot页面:目前有 1 条评论

  1. 沙发
    blsq800

    非常喜欢你的页面,能分享给我下吗。 :mrgreen:

发表评论