0

我在 Layar 中取消了一个 HTML 小部件,它必须控制所有交互。所以没有Layar按钮。我尝试使用简单的 JavaScript / JQuery 函数在 App Store 中打开目标应用程序:

$('.btn-download').click(function(){
    window.location.href = "itms://itunes.com/apps/someApp";
});

我做了一些类似的事情,用mailto打开一个邮件窗口:效果很好。不知何故,这将无济于事。顺便说一句,它只需要在 iOS 上工作。

4

1 回答 1

0

尝试使用这个:

setTimeout(function() {
  window.location = "http://itunes.com/apps/someApp";
}, 25);

window.location = "custom-uri://";

复制自:Is it possible to register a http+domain-based URL Scheme for iPhone apps,like YouTube and Maps?

于 2013-08-19T20:52:01.187 回答