问题
this might be a silly question but I have not been able to find an answer. I want to launch a specific URL with IE10 from within my Windows 8 javascript application, i.e. my application will be suspended and IE10 will launch. How do I do that with javascript?
Thanks Themos
回答1:
var url = new Windows.Foundation.Uri("http://www.google.com")
Windows.System.Launcher.launchUriAsync(url);
来源:https://stackoverflow.com/questions/10600359/how-to-launch-a-url-in-ie10-from-within-a-windows-8-winjs-application