我正在开发一个Ionic / Cordova应用程序,我在其中加载有时包含外部链接的提要和新闻.我需要在应用程序外部加载那些外部链接,而不是在InAppBrowser中,而是在手机浏览器中. 是否可以在所有
是否可以在所有链接上执行此操作作为默认行为?
对于外部链接,您必须使用 inAppbrowser插件.在包含插件以在手机浏览器中打开后,您需要重新安装.使用代码var ref = window.open('http://apache.org', '_system', 'location=yes'); /* _self: Opens in the Cordova WebView if the URL is in the white list, otherwise it opens in the InAppBrowser. _blank: Opens in the InAppBrowser. _system: Opens in the system's web browser. */