为什么这个具有必填属性的电子邮件输入字段未通过 W3C 验证? (html5 页)
Why this email input field with a required attribute fail W3C validation? (html5 page)
在验证我正在处理的联系页面时尝试修复 2 个错误。它确实在页面顶部有一个 <!DOCTYPE html>
作为需要输入的内容。
这里是 W3C Link 的结果。
有问题的代码:
<input class="input-box form-control" type="email" placeholder="Email" id="email" name="email" value="" data-error="Please add a valid email address." required>
w3c 错误:
Attribute placeholder is only allowed when the input type is e-mail,
number, password, search, tel, text, or url.
和
Attribute required is only allowed when the input type is checkbox,
date, datetime, datetime-local, e-mail, file, month, number, password,
radio, search, tel, text, time, url, or week.
任何帮助或指导将不胜感激:)
谢谢!
W3C 验证器有一个错误(仅几天),同时 got fixed。
您的代码段现已通过验证。
在验证我正在处理的联系页面时尝试修复 2 个错误。它确实在页面顶部有一个 <!DOCTYPE html>
作为需要输入的内容。
这里是 W3C Link 的结果。
有问题的代码:
<input class="input-box form-control" type="email" placeholder="Email" id="email" name="email" value="" data-error="Please add a valid email address." required>
w3c 错误:
Attribute placeholder is only allowed when the input type is e-mail, number, password, search, tel, text, or url.
和
Attribute required is only allowed when the input type is checkbox, date, datetime, datetime-local, e-mail, file, month, number, password, radio, search, tel, text, time, url, or week.
任何帮助或指导将不胜感激:) 谢谢!
W3C 验证器有一个错误(仅几天),同时 got fixed。
您的代码段现已通过验证。