0

我遇到了 Chrome 的问题(并且仅限于 Chrome)和带有占位符的密码输入字段。

下面的小提琴显示了我的源代码 - 3 个密码字段和一个文本字段(右对齐),没有样式,没有 JavaScript。

<input id="1" name="Password1" placeholder="Test" type="password"><br />
<input id="2" name="Password2" placeholder="Test Test" type="password"><br />
<input id="3" name="Password3" placeholder="Test Test Test" type="password"><br />
<input id="4" name="Text1" placeholder="Test" type="text">

在 Windows 2K8 上的 chrome(版本 29.0.1547.66 m)中,它看起来像这样:

chrome上的密码框

框左侧的空间与占位符字符串的长度一致。此外,无法在该空间区域内单击以激活该字段。

还有其他人面临这个问题吗?有什么想法或解决方案吗?一个错误,一个功能,...

此致

4

1 回答 1

0

Ok got it, bug is caused by the experimental password generation feature. disable it here: chrome://flags/#enable-password-generation

于 2013-11-08T15:09:32.317 回答