码迷,mamicode.com
首页 > 移动开发 > 详细

限制网页只能从移动手机端打开不能从电脑浏览器打开(转)

时间:2018-06-28 00:51:42      阅读:388      评论:0      收藏:0      [点我收藏+]

标签:mac   x11   AC   user   for   span   class   打开   ==   

html添加js代码

var system = {};
var p = navigator.platform;
var u = navigator.userAgent;
 
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) {//如果是PC转 
    if (u.indexOf(‘Windows Phone‘) > -1) {  //win手机端
 
    }
    else {
        window.location.href = "Expires.aspx?error=1";
    }
}

 

限制网页只能从移动手机端打开不能从电脑浏览器打开(转)

标签:mac   x11   AC   user   for   span   class   打开   ==   

原文地址:https://www.cnblogs.com/helloworld2020/p/9236603.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!