admin管理员组文章数量:1344218
var oIE = new ActiveXObject("InternetExplorer.Application");
var URLname1 = ";;
var URLname2 = ";;
var navOpenInBackgroundTab = 0x1000;
oIE.Visible = true;
oIE.Navigate2(URLname1);
oIE.Navigate2(URLname2, navOpenInBackgroundTab);
Above is a bit of code in my javascript file (launch.js) that launches Internet Explorer with a specific webpage and then opens a new tab in the same browser window using a 2nd URL.
How do you launch the Microsoft Edge
browser instead of IE
in Windows 10 using ActiveXObject()
or another similar method?
I cannot find the InternetExplorer.Application
equivalent for Microsoft Edge.
var oIE = new ActiveXObject("InternetExplorer.Application");
var URLname1 = "http://www.google.";
var URLname2 = "http://www.bing.";
var navOpenInBackgroundTab = 0x1000;
oIE.Visible = true;
oIE.Navigate2(URLname1);
oIE.Navigate2(URLname2, navOpenInBackgroundTab);
Above is a bit of code in my javascript file (launch.js) that launches Internet Explorer with a specific webpage and then opens a new tab in the same browser window using a 2nd URL.
How do you launch the Microsoft Edge
browser instead of IE
in Windows 10 using ActiveXObject()
or another similar method?
I cannot find the InternetExplorer.Application
equivalent for Microsoft Edge.
- Microsoft Edge no longer supports ActiveX blogs.windows./msedgedev/2015/05/06/… Where are you lanching the launch.js from? – securecodeninja Commented Nov 9, 2015 at 20:18
- Hi Roman. I'm executing the script .js file from my desktop. So the javescript code itself is being executed by Window's JavaScript Runtime and not Edge or IE. – Castaa Commented Nov 9, 2015 at 21:42
- so it's like you're double clicking the .js file from the desktop or does it get executed on Windows startup? – securecodeninja Commented Nov 9, 2015 at 21:48
- I'm double clicking, yes. – Castaa Commented Nov 9, 2015 at 21:56
2 Answers
Reset to default 6Windows 10 provides URI schema for lauching Microsoft Egde from any browser. We dont use AcitveXObject at all.
Just include microsoft-edge
protocol handler before your URL.
How I resolved it
function openLinkInIE(url){
window.open("microsoft-edge:"+ url);
}
Create an instance of the WSH Shell object instead:
var oShell = new ActiveXObject("WScript.Shell");
oShell.Run("cmd.exe /C start microsoft-edge:http://www.microsoft.");
本文标签: internet explorerLaunching Microsoft Edge browser from a javascript fileStack Overflow
版权声明:本文标题:internet explorer - Launching Microsoft Edge browser from a javascript file? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743698535a2523916.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论