在此上下文中不允许自动填充字段名称“邮政编码”
The autofill field name “postal-code” is not allowed in this context
我目前正在尝试优化我网页上的表单。 HTML 验证器给我以下错误:
The autofill field name “postal-code” is not allowed in this context.
我不知道为什么,因为它做了它应该做的。自动填充会插入邮政编码。这是元素:
<td><input type=number name="changeZip" min=00000 max=99999 autocomplete="postal-code"></td>
这个元素有同样的错误:
<input class="login" type="number" name="txtZip" value="" required max="99999" min="00000" placeholder="Postleitzahl" autocomplete="postal-code"/>
根据错误信息,为什么这里不允许?我在 Google 中找不到任何相关内容。
谢谢。
类型属性需要是“文本”。一些国家/地区使用字母和数字的组合作为其邮政编码。
因此,您的输入元素应该是
<input type="text" name="changeZip" minLength="5" maxLength="5" autocomplete="postal-code">
我目前正在尝试优化我网页上的表单。 HTML 验证器给我以下错误:
The autofill field name “postal-code” is not allowed in this context.
我不知道为什么,因为它做了它应该做的。自动填充会插入邮政编码。这是元素:
<td><input type=number name="changeZip" min=00000 max=99999 autocomplete="postal-code"></td>
这个元素有同样的错误:
<input class="login" type="number" name="txtZip" value="" required max="99999" min="00000" placeholder="Postleitzahl" autocomplete="postal-code"/>
根据错误信息,为什么这里不允许?我在 Google 中找不到任何相关内容。
谢谢。
类型属性需要是“文本”。一些国家/地区使用字母和数字的组合作为其邮政编码。
因此,您的输入元素应该是
<input type="text" name="changeZip" minLength="5" maxLength="5" autocomplete="postal-code">