关于www自动跳转手机端M站的代码设置问题?
网站有m站,直接在手机浏览器中可以打开m.xxx.com,但是我加了自动跳转代码之后,竟然无法正常打开,网页一直在不停地加载,
<script language="javascript"> 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|640x480|480x320|320x320|240x320|176x220)/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= 'm.域名.com'; } </script> |
代码是这样的,代码本身没问题,难道是我还需要设置什么其它地方吗?因为m站直接输入是可以打开的,请问一下有人知道原因吗?