phonegap中怎么打开浏览器?
在phonegap中这样的链接
<a href="http://www.dabulo.com/" target="_blank">大部落</a>
点击后是可以打开浏览器的,
但是window.open("http://www.dabulo.com/")这样的JS不会打开浏览器
我想知道JS的打开浏览器的方法,求解
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
https://github.com/callback/callback-ios/blob/master/PhoneGapLib/Classes/PhoneGapDelegate.m#L669显示:
navigationType == UIWebViewNavigationTypeOther && mainDocument != nil
then it does open Safari.4 阐述:
window.location.href assignment
, orwindow.open(...)
)mainDocument != nil
signifies that the link is not from an iFrame? and/or doesn't have a target?因此,基本上,我认为这唯一的链接点击在 UIWebView 中打开 (除非它们的差距: / / file:// 链接,或者设置策略。)