标签:ase cal match 包含 use cas alt oca useragent
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"); }
标签:ase cal match 包含 use cas alt oca useragent
原文地址:http://www.cnblogs.com/tiger95/p/6964295.html