下面这段代码是判断浏览器是手机浏览器,然后自动跳转到mobile.com,请问怎么修改,才能把不是用手机浏览器的人,在上mobile.com的时候,自动跳转到PC.COM,谢谢。
<script type="text/javascript"> if(/AppleWebKit.*Mobile/i.test(navigator.userAgent) || (/MIDP|SymbianOS|NOKIA|SAMSUNG|LG|NEC|TCL|Alcatel|BIRD|DBTEL|Dopod|PHILIPS|HAIER|LENOVO|MOT-|Nokia|SonyEricsson|SIE-|Amoi|ZTE/.test(navigator.userAgent))){ if(window.location.href.indexOf("?mobile")<0){ try{ if(/Android|webOS|iPhone|iPod|BlackBerry/i.test(navigator.userAgent)){ window.location.href="http://www.mobile.com"; }else if(/iPad/i.test(navigator.userAgent)){ }else{ window.location.href="http://www.mobile.com" } }catch(e){} } } </script>
相关分类