最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Is it possible to open Microsoft Edge from a page rendered in Internet Explorer via just HTMLJavaScript? - Stack Overflow

programmeradmin1浏览0评论

Windows 10 ships with both modern Microsoft Edge browser, and the legacy Internet Explorer 11.

Based on analytics, I suspect some of my Windows 10 users use IE11 and are perhaps not aware of having Edge browser.

Is it possible to create a link in HTML which opens the website in Edge, if the user is on IE11 on Win10?

Windows 10 ships with both modern Microsoft Edge browser, and the legacy Internet Explorer 11.

Based on analytics, I suspect some of my Windows 10 users use IE11 and are perhaps not aware of having Edge browser.

Is it possible to create a link in HTML which opens the website in Edge, if the user is on IE11 on Win10?

Share edited Jan 15, 2020 at 14:36 TylerH 21.1k78 gold badges79 silver badges112 bronze badges asked Dec 13, 2018 at 16:16 jakub.gjakub.g 41.5k12 gold badges101 silver badges139 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 9

It's possible to open a URL in Edge Spartan thanks to microsoft-edge: protocol. This works in any browser on Windows 10. For example:

<a href="microsoft-edge:https://www.cnn.">CNN</a>

Note however that this does not (yet?) work with Edge Chromium.

Checking if browser is IE11 on Windows 10 can be done for example as follows:

if (document.documentMode === 11 && navigator.userAgent.indexOf('Windows NT 10.0') > -1) {
    ...
}

If you want to create an Edge link to the current page (without hardcoding), you can do it with JavaScript:

myAnchor.href = 'microsoft-edge:' + document.URL;

Demo: https://jg-testpage.github.io/ie11/open-in-edge.html?foo=bar&baz=quux

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论