标签:style one audio lower ie10 control none efi navigator
简单明了判断浏览器
Firefox:
typeof navigator !== ‘undefined‘ && navigator.userAgent.toLowerCase().indexOf(‘firefox‘) > -1;
chrome
typeof navigator !== ‘undefined‘ && navigator.userAgent.toLowerCase().indexOf(‘chrome‘) > -1;
IE10 及之前
typeof navigator !== ‘undefined‘ && navigator.userAgent.toLowerCase().indexOf(‘ie‘) > -1;
IE11
typeof navigator !== ‘undefined‘ && navigator.userAgent.toLowerCase().indexOf(‘trident‘) > -1;
标签:style one audio lower ie10 control none efi navigator
原文地址:https://www.cnblogs.com/hill-foryou/p/9835747.html