2

我有一个使用 HTML 元标记在 iOS 上显示智能应用横幅的网站。我希望横幅只出现在 iPhone 和 iPod 上。

如何防止它出现在 iPad 上?

苹果资源:http: //developer.apple.com/library/ios/#documentation/AppleApplications/Reference/SafariWebContent/PromotingAppswithAppBanners/PromotingAppswithAppBanners.html

我正在使用的代码(来自 Apple 资源):

<meta name="apple-itunes-app" content="app-id=myAppStoreID">
4

1 回答 1

3

您必须使用 Javascript 来执行此操作,因为没有适当的方法可以仅在 HTML 中进行平台检测。

摆脱 HTML 代码中的元标记并使用以下代码段,或者只使用其中的一部分,但你喜欢。如果您想“按原样”使用它,请将其粘贴到正文的底部。

(function($){
  var is_iPad = navigator.userAgent.match(/iPad/i) != null;

  // Fill in your Apple-App stuff here
  var app_id = "<YOUR_APPLE_APP_ID>",
      affiliate_data = null,
      app_argument = null;

  // exclude iPad
  if(!is_iPad) {
    var meta = $("<meta>"), content = 'app-id=' + app_id;
    meta.attr('name', 'apple-itunes-app');

    // Optional stuff (only when filled in)
    if(affiliate_data) content += ', affiliate-data=' + affiliate_data;
    if(app_argument) content += ', app-argument=' + app_argument;

    // Apply
    meta.attr('content', content);
    $('head').append(meta);
  }
}(jQuery));
于 2013-07-18T13:31:00.137 回答