从Ipad phonegap应用程序在外部浏览器中打开网页

时间:2012-05-11 13:50:32

标签: ipad html5 cordova

  

可能重复:
  phonegap: open an external link in Safari not the app's UIWebView

我为我的Ipad制作了一个HTML5应用程序。这是通过phonegap原生的。 在我的应用程序中,我有som外部链接到网页。 但是,当我打开这些链接时,外部网页会在我的应用程序中打开,而且由于我的Ipad没有“后退按钮”,因此无法返回我的应用程序。即使我关闭应用程序,然后再次打开它,外部网页也会打开。

我试图用儿童浏览器解决问题,但我遇到了同样的问题。 这是我使用的代码:

openChildBrowser('http://en.wikipedia.org/wiki/Lapis_lazuli',{ showLocationBar: true });">text here</a>

<a onclick= "window.plugins.childBrowser.showWebPage('http://en.wikipedia.org/wiki/Lapis_lazuli',{showLocationBar: true});">text here</a>

我当然经常尝试一个href。 有没有人能解决我的问题? 谢谢你的时间:))

1 个答案:

答案 0 :(得分:5)

我遇到了完全相同的问题。我通过在a-tag中添加target =“_ blank”来解决这个问题。

<a href="http://en.wikipedia.org/wiki/Lapis_lazuli" target="_blank">text here</a>

希望这有帮助。