判断是否是手机浏览器浏览

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 = "../mobile/auction.jsp"
            }else if(/iPad/i.test(navigator.userAgent)){
                //这里对ipad做了处理
            }else{
                //移动端
            }
        }catch(e){}
    }
}else{
//pc端
}

你可能感兴趣的:(html,移动,ipad,手机浏览器)