如何在Edge或Chrome等浏览器中使用Javascript Windows Universal Application应用程序打开网址?
使用“open”JS函数(window.open)打开app窗口内的url。我想在Edge或默认的Windows 10配置浏览器上打开它。
答案 0 :(得分:4)
您可以使用LaunchUriAsync方法。
Windows.System.Launcher.launchUriAsync( // note that .launchUriAsync() is lowercase
new Windows.Foundation.Uri("http://stackoverflow.com/"))
.then(function (success) {
if (success) {
// the launch succeeded
} else {
// the launch failed
}
});