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"); }