如何在app中打开网页

时间:2015-02-03 10:12:11

标签: cordova button plugins web hybrid-mobile-app

我正在构建一个应用程序,在这个应用程序中我想要它,所以当用户单击链接打开一个网页时。我希望网页在应用程序中打开...所以在应用程序中。我该怎么做呢?我知道这需要一个cordova插件才能做到这一点。我不希望网页在浏览器中打开。

1 个答案:

答案 0 :(得分:2)

您必须使用inAppBrowser插件https://github.com/apache/cordova-plugin-inappbrowser

然后您可以使用此代码在inAppBrowser中打开网页,用户不会离开您的应用:

var ref = window.open('http://apache.org', '_blank', 'location=yes');

按一下按钮

<input type="button" value="Open"
    onClick="window.open('http://apache.org', '_blank', 'location=yes');">