Microsoft Edge x-ms-format-detection =“无”

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

所以我有这个代码

<label title={Name} className="label" for={Name}>+000000000000</label>

我将此添加到标签中

x-ms-format-detection="none"

最后,我有这个:

<label title={Name} className="label" for={Name} x-ms-format-detection="none">+000000000000</label>

我重建了解决方案,问题是浏览器(Edge)没有将此道具显示为DOM中的元素,而是仍将电话号码转换为链接。

html edge
1个回答
0
投票
尝试在头部添加以下<meta>标签。

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

或者,将<label>标签更改为<p>标签:

<p title={Name} className="label" for={Name} x-ms-format-detection="none">425-882-8080</p>

然后,输出如下:

enter image description here

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