在 IE Edge 浏览器中禁用自动 html 字段格式识别

Disable automatic html field format recognition in IE Edge browser

我有 html table IP (10.212.133.144) 和 GUID (6237be55-0e51-4a0c-9c8a-701451389736) 值。 IEEdge-Win10 浏览器对它们应用了奇怪的超链接格式。

这是一个没有任何 css 样式的简化示例,IEEdge 发挥了额外的作用。我不想要任何超链接自动格式化,如何禁用此行为?它应该在没有最终用户交互的情况下工作。没有其他浏览器这样做。

参考问题,但我无法编译出有效的解决方案
Taming the automatic telephone number thing in the windows 10 edge browser

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
  <meta http-equiv="content-type" content="text/html;charset=utf-8" />
</head>
<body>

<table cellspacing="2" cellpadding="2" style="border: 1px solid blue;">
  <thead id="tasks_header">
  <tr>
    <th class="normal">#</th>
    <th class="normal">IP</th>
    <th class="normal">GUID</th>
  </tr>
  </thead>

  <tbody id="rows1">
  <tr><td>1</td><td>1.2.3.4</td><td>a8f890ee-0ff3-44af-ba53-17c173eb62d4</td></tr>
  <tr><td>2</td><td>11.22.33.44</td><td>6237be55-0e51-4a0c-9c8a-701451389736</td></tr>
  </tbody>

  <tbody id="rows2">
  <tr><td>1b</td><td>10.212.133.144</td><td>5150471e-5528-4823-88f8-4fff9e2377be</td></tr>
  <tr><td>2c</td><td>10.210.116.164</td><td>17b9dc7a-1e70-41e0-8abc-8202597930e9</td></tr>
  </tbody>

</table>

</body>
</html>

编辑:此行为已在两台独立的 Win10 计算机上出现,一旦可以访问 PC,将尝试更多。

它们被识别为 phone 数字。您可以通过添加此元标记来禁用此功能

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