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

JS判断浏览器打开终端

时间:2015-01-08 15:38:00      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:js

var UA = function(){
    var userAgent = navigator.userAgent.toLowerCase();
    return {
        ipad: /ipad/.test(userAgent),
        iphone: /iphone/.test(userAgent),
        android: /android/.test(userAgent),
        weixin: /micromessenger/.test(userAgent),
        qqnews_version: userAgent.match(/qqnews/i) == "qqnews" ? userAgent.split(‘qqnews/‘)[1] : ‘‘
    };
}


本文出自 “让希望不再失望!” 博客,请务必保留此出处http://peterz2011.blog.51cto.com/3186140/1600611

JS判断浏览器打开终端

标签:js

原文地址:http://peterz2011.blog.51cto.com/3186140/1600611

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