我刚刚发现,有一个元标记可以删除电话号码,作为iOS上的HTML链接。这适用于HTML电子邮件吗?
<meta name="format-detection" content="telephone=no">还有地址和日期的吗?我一直在写黑客来克服这一点,但如果它是一个元标签,这是很好的!有人知道地址和日期的语法吗?
发布于 2016-10-13 13:05:58
<html>
<head>
<meta name="format-detection" content="telephone=no">
<meta name="format-detection" content="date=no">
<meta name="format-detection" content="address=no">
<meta name="format-detection" content="email=no">
<style type="text/css">
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;
}
</style>
</head>
<body>
123 Main Street<br/>
Columbus, Ohio 43215
</body>
</html>https://stackoverflow.com/questions/28027330
复制相似问题