如何在IE浏览器上打开外部链接而不是使用WinJS的Metro IE

时间:2013-12-23 22:40:41

标签: internet-explorer winjs

我正在WinJS中开发一个Metro应用程序,它在外部浏览器(MetroIE)上打开如下链接:

  var uri = new Windows.Foundation.Uri("http://XXX.XXX.XX.XXX:XXXX/test/AU/jsp/AU000007.jsp?data=" + jcrypto(message));

    //opens the url on external browser
    Windows.System.Launcher.launchUriAsync(uri).done(
        function (success) {
            if (success) { console.log("page opened correctly"); }
            else { console.log("an error has occured"); }
            });

但是我想要正常的IE11浏览器上的链接,我该怎么办?

提前致谢

0 个答案:

没有答案