function isTrueIE() { if (navigator.userAgent.indexOf("MSIE") > 0) { // ie 内核 if (navigator.userAgent.indexOf("Tablet PC") > 0) { // x64 纯ie return true; } else if (navigator.userAgent.indexOf("Maxthon") > 0 || navigator.userAgent.indexOf("SE ") > 0 ||navigator.userAgent.indexOf("360") > 0 || navigator.userAgent.indexOf("QQ") > 0 || navigator.userAgent.indexOf("Trident") > 0) { // IE内核非IE浏览! return false; } else { // x32 纯ie return true; } } return false; }
人有两条路要走, 一条是必须走的,一条是想走的,你必须把必须走的路走漂亮,才可以走想走的路。