gpt4 book ai didi

javascript - 阻止智能应用横幅在 iPad 上显示

转载 作者:行者123 更新时间:2023-11-28 01:54:37 25 4
gpt4 key购买 nike

我有一个网站使用 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">

最佳答案

您必须使用 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));

关于javascript - 阻止智能应用横幅在 iPad 上显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17721797/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com