IE 11中userAgent已经不包含
‘msie‘
所以用
‘msie‘
不能判断IE 11
IE 11的userAgent版本为Trident x.x
判断IE 11 用正则判断userAgent中有没有带Trident字样的字符串即可
var u = window.navigator.userAgent.toLocaleLowerCase(), ie11 = /(trident)\/([\d.]+)/, b = u.match(ie11); if(b){ alert("该浏览器是ie11"); }
时间: 2024-10-08 14:06:42