当使用选项_blank时,是否可以从InAppBrowser打开新的Chrome窗口?
cordova.InAppBrowser.open(url, '_blank', 'location=no,hide=yes,zoom=no');
我添加了属性target =" _blank"到页面上的所有链接,但这不会打开一个新窗口。
有人知道这是否可行?
答案 0 :(得分:0)
尝试使用window.open而不是cordova.InAppBrowser.open
我一直在使用window.open在我的混合应用程序中没有问题
无需添加_blank,因为这是默认设置..
答案 1 :(得分:0)
使用InAppBrowser,您可以调用网址,并根据您的平台显示其中的一些文件。
没有办法只是“开始”另一个应用程序,但你可以:
http://plugreg.com/search?q=open http://cordova.apache.org/plugins/?q=intent
如果您想打开外部网址,请阅读:
http://cordova.apache.org/docs/en/latest/guide/appdev/whitelist/index.html
http://plugreg.com/plugin/EddyVerbruggen/SocialSharing-PhoneGap-Plugin