pc端、手机端网页切换

// pc端、手机端网页切换

 function isMobile() {
        if ((navigator.userAgent.match(/(phone|pad|pod|iPhone|iPod|ios|iPad|android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i)))
            return true;
        else
            return false;
    }
    
    
    if (isMobile() !== false)
        window.location.href = "http://localhost:8000";
})



    
    Document






//URL跳转





    
    index



Not Found

The requested URL /sdfd was not found on this server.

你可能感兴趣的:(pc端、手机端网页切换)