삽질 블로그

[JavaScript] IE 브라우저 접속시 edge 브라우저로 이동 본문

프론트앤드/Javascript

[JavaScript] IE 브라우저 접속시 edge 브라우저로 이동

건와닝 2022. 1. 6. 16:02

if (/MSIE \d|Trident.*rv:/.test(navigator.userAgent)) {
         window.location = 'microsoft-edge:' + window.location;
         setTimeout(function () {
            window.location = 'https://go.microsoft.com/fwlink/?linkid=2135547';
         }, 1);
 }

IE 브라우저로 접속 시  

현재 보이는 페이지를 IE 로 브라우저로 보여주며 Edge 브라우저로 이동된다.