如何禁用InAppBrowser功能

时间:2015-11-19 12:48:17

标签: android cordova plugins inappbrowser

我正在编写一个带有Phonegap的Android应用程序,并且InApp Browser功能会自动启用。

如何禁用它?

我想在手机上使用我的默认浏览器。

先谢谢。

1 个答案:

答案 0 :(得分:0)

我相信,您需要在target='_blank'个链接中添加<a>属性。

或者,在早期版本的Phonegap中,您可能需要处理应在系统浏览器中打开的所有链接的onclick事件,并使用以下内容启动它:

window.open(this.url, '_system');