码迷,mamicode.com
首页 > 其他好文 > 详细

判断chrome 和 360浏览器

时间:2014-06-28 20:16:15      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   color   cti   c   

 1 function isChrome360() {
 2     if( navigator.userAgent.toLowerCase().indexOf(‘chrome‘) > -1 ) {
 3         var desc = navigator.mimeTypes[‘application/x-shockwave-flash‘].description.toLowerCase();
 4         if( desc.indexOf(‘adobe‘) > -1 ) {
 5             return true;
 6         }
 7     }
 8     return false;
 9 }
10 alert(isChrome360());

 

判断chrome 和 360浏览器,布布扣,bubuko.com

判断chrome 和 360浏览器

标签:des   style   blog   color   cti   c   

原文地址:http://www.cnblogs.com/yiliweichinasoft/p/3794681.html

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