首页 > 代码库 > 判断浏览器是否为IE

判断浏览器是否为IE

if (!+[ 1, ]) {  //是IE浏览器} else {   if (document.documentMode == 10) {    //单独判断IE10   } else       //非IE浏览器   }}