js判断是否是手机端

var host = window.location.host;
if (/(iPhone|iPad|iPod|iOS|BlackBerry|IEMobile|Android)/i.test(navigator.userAgent)) {

    if(host == 'www.aaaaa.cc') {
        href = window.location.href;
        href=href.replace(/www.aaaaaaaaa.cc/, "m.aaaaaaaaaaaaa.cc");
        window.location.href=href;
    }
}


你可能感兴趣的:(js判断是否是手机端)