js问题之判断是否是火狐、IE浏览器

  • Post author:
  • Post category:其他




一、

在vue项目中试过,IE浏览器版本是IE11
	// js文件--methods 新增一方法
	,myBrowser () {
		let userAgent = navigator.userAgent
		if (userAgent.indexOf("Firefox") > -1) {
			return "FF"
		}
		if (!!window.ActiveXObject || "ActiveXObject" in window || window.navigator.userAgent.indexOf("MSIE") >= 1) {
			return "IE"
		}
	}
	// 调用
	const browser = this.myBrowser()
	if (browser == "IE"){
		// code...
	}else if (browser == "FF") {
		// code..
	}



版权声明:本文为yan263364原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。