How can I detect Internet Explorer (IE) and Microsoft Edge using JavaScript?

前端 未结 13 932
小鲜肉
小鲜肉 2020-11-30 02:57

I\'ve looked around a lot, and I understand that there\'s a lot of ways to detect internet explorer.

My problem is this: I have an area on my HTML document, that when

13条回答
  •  攒了一身酷
    2020-11-30 03:11

    One line code to detect the browser.

    If the browser is IE or Edge, It will return true;

    let isIE = /edge|msie\s|trident\//i.test(window.navigator.userAgent)
    

提交回复
热议问题