Javascript Apache cordova插件将支持phonegap应用程序内部的外部网站?

Javascript Apache cordova插件将支持phonegap应用程序内部的外部网站?,javascript,html,cordova,ionic-framework,phonegap-plugins,Javascript,Html,Cordova,Ionic Framework,Phonegap Plugins,我正计划推出phonegap的外部网站。在这种情况下,cordova插件是否支持?添加InAppBrowser插件,允许打开外部链接,以便您能够返回应用程序: <script> function openExternal(elem) { window.open(elem.href, "_system"); return false; // Prevent execution of the default onClick handler } </script&g

我正计划推出phonegap的外部网站。在这种情况下,cordova插件是否支持?

添加InAppBrowser插件,允许打开外部链接,以便您能够返回应用程序:

<script>
function openExternal(elem) {
    window.open(elem.href, "_system");
    return false; // Prevent execution of the default onClick handler 
}
</script>
<a href="https://www.twitter.com" onClick="javascript:return openExternal(this)">Twitter</a>

您需要打开phonegap应用程序内的网页吗?