如何从Phonegap打开Goog​​le Play商店

时间:2012-11-09 12:29:24

标签: android ios cordova google-play itunes

我想从我的phonegap应用程序打开google play store来安装另一个通知应用程序。怎么能这样做?我想通过URL导航方案简单易用。但谷歌不支持所有网址导航方案。我检查过只有Twitter正在使用它。

1 个答案:

答案 0 :(得分:2)

您可以打开此应用的网址,当用户点击下载时,它会重定向播放商店应用。

看看这个Link

或者您可以使用以下方法之一:

window.location.href("http://stackoverflow.com")

window.open("http://stackoverflow.com")

或者你只是直接启动它看看这个例子和文档: Document

Example