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

js判断页面是从pc,ipad,phone 打开的

时间:2017-08-11 13:27:26      阅读:170      评论:0      收藏:0      [点我收藏+]

标签:useragent   ebe   win   class   pad   页面   and   ons   ros   

js判断页面是从pc,ipad,phone 打开的

    function IsPC() {
        var userAgentInfo = navigator.userAgent;
        var Agents = [
            "Android",
            "iPhone",
            "SymbianOS",
            "Windows Phone",
            "iPad",
            "iPod"
        ];

        for (var v = 0; v < Agents.length; v++) {

            if (userAgentInfo.indexOf(Agents[v]) > 0) {

                return Agents[v];
            }else{
                return "pc";
            }

        }
    };
    var shebei = IsPC();
    console.log(shebei)

 

js判断页面是从pc,ipad,phone 打开的

标签:useragent   ebe   win   class   pad   页面   and   ons   ros   

原文地址:http://www.cnblogs.com/chefweb/p/7345295.html

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