当我在其上使用 aria-label 时,类型为 password 的输入字段显示错误。 如果类型是 text 或 number,则 aria-label 工作正常。
请帮忙!
这是因为 type="password" 具有输入的通用角色。您可以做以下两件事之一
<input type="password" role="password"/>
或
<input type="password" aria-describedBy="id"/>