在 IE 输入中禁用默认大写锁定工具提示

Disable default caps lock tooltip in IE input

在我输入密码的登录对话框中,当我的焦点在输入上并且激活了大写锁定时,我在 Internet Explorer 中得到了一个工具提示(所有其他浏览器都没有这样的默认工具提示)。我想删除此默认工具提示 而没有任何 javascript。是否有属性或其他内容?

Password: <input type="password" required>

IE 中带有工具提示的屏幕截图:

这里根据official documentation.

解决

关闭验证密码输入字段的自动大写锁定警告。

if (document.msCapsLockWarningOff == false) {
  document.msCapsLockWarningOff = true;
}