在运行Ubuntu 18.04和Chrome 78的主计算机上,此表单可以正常运行-每个表单可以独立填写。
form {
border: solid 1px black;
padding: 1em;
display: inline-block;
}
form input {
display: block;
}
<form>
<label> name<input type = "text" name ="name" /> </label>
<label> phone<input type = "text" name ="phone" /> </label>
<label> email<input type = "text" name ="email" /> </label>
<button type="submit"> submit</button>
</form>
<form>
<label> name <input type = "text" name ="name"/> </label>
<label> phone<input type = "text" name ="phone" /> </label>
<label> email <input type = "text" name ="email"/> </label>
<button type="submit"> submit</button>
</form>
但是-在Windows计算机上的Chrome 81上-在第二个表单上选择自动填充将导致第一个表单也被填充。
这是错误,还是正确的自动填充行为?