CyLee
/** * 是否为mac系统(包含iphone手机) * */ 
var isMac = function() { 
return /macintosh|mac os x/i.test(navigator.userAgent); 
}();


/** * 是否为windows系统 * */
var isWindows = function() { 
    return /windows|win32/i.test(navigator.userAgent);
}(); 

 

分类:

技术点:

相关文章:

  • 2021-09-04
  • 2021-12-24
  • 2021-12-12
  • 2021-11-13
  • 2021-05-27
猜你喜欢
  • 2021-10-04
  • 2021-08-03
  • 2021-10-24
  • 2022-12-23
  • 2021-11-13
  • 2021-07-25
相关资源
相似解决方案