Javascript 版本的 isMobile

2015-08-10 0 712
Javascript 版本的 isMobile
  $(document).ready(function() { 
        var isMobile = {
    Android: function() {
        return navigator.userAgent.match(/Android/i) ? true : false;
    },
    BlackBerry: function() {
        return navigator.userAgent.match(/BlackBerry/i) ? true : false;
    },
    iOS: function() {
        return navigator.userAgent.match(/iPhone|iPad|iPod/i) ? true : false;
    },
    Windows: function() {
        return navigator.userAgent.match(/IEMobile/i) ? true : false;
    },
    any: function() {
        return (isMobile.Android() || isMobile.BlackBerry() || isMobile.iOS() || isMobile.Windows());
    }
};
        if( isMobile.any() ) 
        {
                $('.main_header').hide();                                                
        }
});

遇见资源网 html Javascript 版本的 isMobile http://www.ox520.com/14336.html

常见问题

相关文章

发表评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务