在Web浏览器中打开链接

时间:2015-01-22 13:22:04

标签: android cordova jquery-mobile

是的,我在Net上找到了很多变通方法,感谢Google。他们都没有工作!我要在这里列出它们:

1-使用data-rel属性,将值设置为external

2-安装cordova InAppBrowser插件以及将onclick属性onclick="window.open('http://www.google.com', '_system'); return false;"添加到相应的a代码

3-检查cordova.jscordova_plugins.js是否存在&包含在相关的html文件中

他们是我在Stackoverflow上发现的最有价值的想法,如this one和其他论坛。然而,它在应用程序窗口中打开了!

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

在没有jquery-mobile的情况下使用phonegap并安装了InAppBrowser插件我可以使用以下方式查看链接:

window.open(encodeURI('https://www.google.co.uk/?gfe_rd=cr&ei=jxvBVKuLIOqD0AXI74CACQ#q=woop'), '_system', 'location=yes');

如果您尝试打开.pdf文件的链接,它会将其下载到设备。 希望有所帮助。