为什么Google Chrome检查器会向随机html元素添加奇怪的id属性?

时间:2014-03-01 22:07:14

标签: html google-chrome localhost

我在localhost上运行了以下页面:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8" />
  <title>Times</title>
  <style type="text/css" media="screen">
    input{font:1.5em/1.1em sans-serif;padding:0.25em;}
  </style>
</head>
<body>
  <p>
    <input type="date" />
  </p>
  <p>
    <input type="time" />
  </p>
  <p>
    <input type="datetime" />
  </p>
</body>
</html>

当我在Chrome浏览器中查看该页面并查看检查器时,我注意到其中三个元素中添加了一些id属性:

enter image description here

任何人都知道这是为什么?

1 个答案:

答案 0 :(得分:1)

Chrome Inspector不会添加这些属性。它显示其他添加了它们。

这几乎可以肯定是您安装的扩展程序。也许这一个:

enter image description here

停用您的扩展程序(@ chrome://extensions)或在隐身窗口中查看您的页面(当然,假设您没有在隐身模式中启用扩展程序)并再次查看。