使用 Phonegap 链接到 Android Market 中的应用程序
我想使用我使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我通过向 a href 标记添加 rel="external" 参数来修复此问题。
I fixed this by adding a rel="external" parameter to the a href tag.