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

iOS email disable automatic link on names

提问人:al404IT 提问时间:3/19/2018 最后编辑:Vadim Kotoval404IT 更新时间:6/26/2018 访问量:480

问:

我刚刚注意到,在 iPhone 邮件应用程序上使用最新的 iOS 软件 11.2.6,HTML 时事通讯中的一些歌手姓名会自动链接到与 iTunes、Siri 和网络搜索结果的聚光灯叠加。

是否可以使用标签或某些代码禁用此功能?

iOS 电子邮件 新闻稿

评论


答:

0赞 Chris P. Bacon 6/26/2018 #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;
}