首页 > Web开发 > 详细

html5判断浏览器来源并跳转

时间:2017-10-28 18:44:46      阅读:582      评论:0      收藏:0      [点我收藏+]
<script type="text/javascript">
        var system ={};  
       var p = navigator.platform;       
       system.win = p.indexOf("Win") == 0;  
       system.mac = p.indexOf("Mac") == 0;  
       system.x11 = (p == "X11") || (p.indexOf("Linux") == 0);     
       if(system.win||system.mac||system.xll){//如果是电脑跳转到
       alert("请从手机端访问");
               window.location.href="http://52td.top";  
       }else{  //如果是手机,跳转到
            //console.log(11111);
            window.location.href="#";  
       }
</script>

 

html5判断浏览器来源并跳转

原文:http://www.cnblogs.com/scrazy/p/7747596.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!