我正在开发一个具有一些URL-s的Windows应用商店应用。我只想点击其中一个,我的应用程序将切换到Internet Explorer。
有没有办法做到这一点?
的Sándor
答案 0 :(得分:2)
// The URI to launch
var uriToLaunch = "http://www.bing.com";
// Create a Uri object from a URI string
var uri = new Windows.Foundation.Uri(uriToLaunch);
Windows.System.Launcher.launchUriAsync(uri).then(
function (success) {
if (success) {
// URI launched
} else {
// URI launch failed
}
});
这样做吗?