在Cordova项目(没有InAppBrowser插件)中,当我执行
window.open("http://foo.com", '_blank');
window.open("http://bar.com", '_blank');
仅打开http://bar.com。
如何打开两个URL?
答案 0 :(得分:0)
Cordova文档提供以下信息:
document.addEventListener("deviceready", onDeviceReady, false);
// Cordova is ready
//
function onDeviceReady() {
// external url
var ref = window.open(encodeURI('http://apache.org'), '_blank', 'location=yes');
// relative document
ref = window.open('next.html', '_self');
}
意味着可能不仅在一个网址中包含外部网址。
请参见https://cordova.apache.org/docs/en/2.7.0/cordova/inappbrowser/window.open.html