作为程序员一定要保持良好的睡眠,才能好编程

使用JS判断是否手机访问

发布时间:2017-02-07

<script>
        function tmobile() {
            var flag = false;
            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|320x320|240x320|176x220)/i;
            var u = navigator.userAgent;
            if (null == u)
                flag = true
            var result = regex_match.exec(u);
            if (null == result) {
                flag = false;
            } else {
                flag = true;
            }
            if (flag) {
                window.location.href = "http://m.demo.com";
            }
        }
        tmobile();
    </script>



使用JS 判断是否手机访问,如果手机访问,则就跳转到手机网站





这个代码,在做验证的时候,很实用,请收藏。