首页 > 代码库 > JS 判断浏览器

JS 判断浏览器

If (navigator.appName.indexOf(“Explorer”) > -1) {

         //IE浏览器

} else {

         //其他浏览器

}

JS 判断浏览器