企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持知识库和私有化部署方案 广告
[https://www.runoob.com/jsref/obj-navigator.html](https://www.runoob.com/jsref/obj-navigator.html) [https://developer.mozilla.org/zh-CN/docs/Web/API/Navigator](https://developer.mozilla.org/zh-CN/docs/Web/API/Navigator) 判断浏览器 ``` var ua=navigator.userAgent; if (/firefox/i.test(ua)) { console.log("firefox"); } else if (/chrome/i.test(ua)){ console.log("chrome"); } else if (/msie/i.test(ua)){ console.log("IE"); } else if ("ActiveXObject" in window) { console.log("IE11"); } //注意:edge使用chrome内核啦 ```