美文网首页
pc端、手机端网页切换

pc端、手机端网页切换

作者: 飞鱼_JS | 来源:发表于2017-07-11 21:17 被阅读0次

// 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";
})
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8" />
    <title>Document</title>
<script>
    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://shenyuxf.top/zhongsheng";
    }else{
        window.location.href = "http://shenyuxf.top:3030";
    }
</script>
</head>
<body>

</body>
</html>

//URL跳转

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>index</title>
</head>

<body>
<h1>Not Found</h1>
<p>The requested URL /sdfd was not found on this server.</p>
</body>
<script>
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 (window.location.href.indexOf("www.essenhj.cn") > -1 ||window.location.href.indexOf("www.essenhj.cn/essenhj/#/") > -1) {
    if (isMobile() !== false) {
        window.location.href="http://www.essenhj.cn/essenhj";
    } else {
        window.location.href="http://www.shenyuxf.top:3080";
    }

} else if (window.location.href.indexOf("www.qjkeji.cn") > -1) {
    window.location.href="http://www.qjkeji.cn/qjkeji/";
}
</script>

</html>

相关文章

网友评论

      本文标题: pc端、手机端网页切换

      本文链接:https://www.haomeiwen.com/subject/bwtvhxtx.html