<meta name = "format-detection" content = "telephone=no">不工作

问题描述 投票:0回答:2

以下用于格式检测的元标记在 Chrome 中不起作用:

<meta name = "format-detection" content = "telephone=no"> 

允许在 Chrome 中点击移动超链接并拨打电话,代码如下:

<a href="tel:+18002237440" id="sk_ftrCallTxt" class="sk_footerSubTitle">Call</a>
google-chrome tags format meta
2个回答
0
投票

我认为这可能是因为你忘记“关闭”

应该是这样的:


<meta name = "format-detection" content = "telephone=no" />


0
投票

<meta name = "format-detection" content = "telephone=no">
旨在阻止 iOS(Chrome 忽略此标头 AFAIK)转换普通文本,例如:

<p>This is a normal text with a phone number: +1 202-918-2132</p>

自动进入链接。

如果您使用

tel:
模式显式创建锚点,那么它的行为将保持不变,如您的示例所示。

© www.soinside.com 2019 - 2024. All rights reserved.