我正在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浏览器上的链接,我该怎么办?
提前致谢