您的位置:首页 > 移动开发

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

2015-08-27 14:18 302 查看
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";
    }
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: