HTML5 一致性检查器
我使用 W3C 验证器收到以下警告:
使用实验性功能:HTML5 一致性检查器
到底是什么意思?我不能指望这个验证器?
I got the following warning using the W3C validator:
Using experimental feature: HTML5 Conformance Checker
What exactly does it mean? That I can't count on this validator?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
警告“使用实验性功能:HTML5 一致性检查器”。意味着验证器正在检查您的标记是否为 HTML5,但由于 w3c 尚未就 HTML5 标准的每个部分达成一致,因此您应该对验证器所说的内容持保留态度,因为在标准发布之前它很容易发生更改完全的。该警告并不意味着您的代码有任何问题,但如果您想消除该警告,请尝试使用“HTML 4.01 Strict”的 Doctype 进行验证。
The warning "Using experimental feature: HTML5 Conformance Checker." means that the validator is checking your markup as HTML5, but since the w3c hasn't agreed on every part of the HTML5 standard, you should take what the validator says with a grain of salt, because it is prone to change until the standard is complete. The warning does not mean that there is anything wrong with your code, but if you want to get rid of the warning, try validating with a Doctype of "HTML 4.01 Strict".
是:
HTML5 is an unfinished draft so the validator is:
除了 Ronnie 所说的之外,我倾向于使用 HTML5 Validator 它不会给您该消息,但它当然,它仍然处于实验阶段,尽管我相信现阶段 HTML5 规范不太可能发生太大变化。
In addition to what Ronnie says, I tend to use HTML5 Validator which doesn't give you that message, but it is of course also still experimental although things are unlikely to change much in the HTML5 specification at this stage I believe.
这意味着您的代码没有问题,但是文档在语义上可能正确,也可能不正确。
查看这篇文章http://www.alistapart.com/articles/semanticsinhtml5/
It means the there are no issues with your code, however the document may or may not be semantically correct.
check out this article http://www.alistapart.com/articles/semanticsinhtml5/