使用Kendo UI Mobile v2013.1.319和PhoneGap 2.6.0(iOs),我无法再在Safari浏览器中打开链接。
这在以前的版本中效果很好:
<a href="http://apache.org" data-rel="external" target="_blank">
但现在它仍然在与应用程序本身相同的webview中打开。
如何强制链接在外部打开?最好不使用javascript,因为链接的HTML是通过外部数据源动态加载的。
答案 0 :(得分:2)
您可以使用Cordova InAppBrowser
var ref = window.open('http://apache.org', '_blank', 'location=yes');