iOS 电子邮件禁用名称上的自动链接

Posted

技术标签:

【中文标题】iOS 电子邮件禁用名称上的自动链接【英文标题】:iOS email disable automatic link on names 【发布时间】:2018-08-27 20:36:28 【问题描述】:

我刚刚注意到,在 iPhone Mail App 上使用最新的 ios 软件 11.2.6,html 时事通讯中的一些歌手姓名会自动链接到 iTunes、Siri 和网络搜索结果的聚光灯覆盖。

是否可以通过标签或代码禁用此功能?

【问题讨论】:

【参考方案1】:

这是一个很好的描述,您可以采取哪些措施来防止在 iOS 上自动生成链接...

https://litmus.com/blog/update-banning-blue-links-on-ios-devices

解决方案可能是文本中的第 4 点,讨论了在原始电子邮件代码中注入的属性。

<a href="#" x-apple-data-detectors="true">

您可以通过添加自己的样式来禁用视觉更改。

a[x-apple-data-detectors] 
    color: inherit !important;
    text-decoration: none !important;
    font-size: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;

【讨论】:

以上是关于iOS 电子邮件禁用名称上的自动链接的主要内容,如果未能解决你的问题,请参考以下文章

如何在 iPhone 邮件应用程序中禁用电话号码链接?

有没有办法禁止电子邮件引擎自动超链接 URL?

iOS 8 上的通用链接?

如何防止超链接链接

禁用 IE 中带有“contentEditable”标志的元素的自动 URL 检测

UIActivityViewController 自动“点击”链接 iOS 7