欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

html页面电脑禁用手机可访问

程序员文章站 2022-06-04 19:49:49
...

 

<script type="text/javascript">
    var system ={};
    var p = navigator.platform;
    console.log(p)
    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){//如果是电脑跳转到
        window.location.href="./forbid.html";
        // alert(888)
    }else{  //如果是手机,跳转到
        window.location.href="./index.html";
    }
</script>