使用 Phonegap 链接到 Android Market 中的应用程序

发布于 2024-12-10 06:22:11 字数 327 浏览 0 评论 0原文

我想使用我使用phonegap 和jquery mobile 构建的应用程序的免费版本中的链接链接到我的应用程序的完整版本。

我尝试将 URL 放入 href 标记中,但此页面加载大约 5 秒,然后转到空白页面。

我错过了什么吗?

我正在使用 单击此处

我也尝试过

market://details?id=com.android.example

I would like to link to a full version of my application using a link in the free version of my application that I have built using phonegap and jquery mobile.

I've tried just putting the URL in an href tag but this page loads for around 5 seconds then goes to a blank white page.

Am I missing something?

I'm using <a href="http://market.android.com/details?id=com.example.stackoverflow">click here</a>

I've also tried

market://details?id=com.android.example

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终弃我 2024-12-17 06:22:11

我通过向 a href 标记添加 rel="external" 参数来修复此问题。

<a href="http://market.android.com/details?id=com.example.name" rel="external">Press here</a>

I fixed this by adding a rel="external" parameter to the a href tag.

<a href="http://market.android.com/details?id=com.example.name" rel="external">Press here</a>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文