HTML5 一致性检查器

发布于 2024-09-28 11:33:06 字数 111 浏览 3 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

看春风乍起 2024-10-05 11:33:06

警告“使用实验性功能: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".

温柔少女心 2024-10-05 11:33:06

是:

  • 新的并且比已经生产多年的验证器存在更多错误(因为 HTML5 已经放弃了其前身的 SGML 遗产 - 您不能只使用基于 DTD 的验证器)
  • HTML5 是一个未完成的草案,因此验证器 将您的文档发送到移动目标(可能已经落后)

HTML5 is an unfinished draft so the validator is:

  • New and subject to more bugs than one that has been in production for years (since HTML5 has abandoned the SGML legacy of its predecessors--you can't just use a DTD based validator)
  • Comparing your document to a moving target (which might have fallen behind)
绝情姑娘 2024-10-05 11:33:06

除了 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.

清秋悲枫 2024-10-05 11:33:06

这意味着您的代码没有问题,但是文档在语义上可能正确,也可能不正确。

查看这篇文章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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文