我的问题是 inAppBrowser 只能从起始页开始工作。我需要从流中的许多页面之一打开我的应用程序中的外部链接。我想在AppBrowser中使用它,但它打开的页面没有导航栏和完成按钮。如果我尝试将 inAppBrowser 添加到 index.html 它工作正常...
在 index.html 我通过 var ref = window.open("startNavigation.html", "_blank", "location=no"); 打开下一页
在 some.html 我试图通过调用按钮打开外部窗口:
window.open(" http://google.html ", '_self', 'location=yes');
有什么建议吗?