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

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];
            }

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

 

posted @ 2017-08-11 12:12  大厨的笔记  阅读(782)  评论(0编辑  收藏  举报