美文网首页
判断移动端还是pc端 并切换到相应网站

判断移动端还是pc端 并切换到相应网站

作者: LearningCoding | 来源:发表于2017-08-10 10:04 被阅读13次
    <script type="text/javascript">
        try{
            if (/Android|webOS|iPhone|iPod|iPad|BlackBerry/i.test(navigator.userAgent)) {
                window.location.href="http://m.haotoufa.com";
            } 
        }catch(e){
            console.log('error!');
        }
    </script>
    

    相关文章

      网友评论

          本文标题:判断移动端还是pc端 并切换到相应网站

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