Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
根据 HTML5 规范,doctype preamble 是不区分大小写的。那么为什么 Aptana Studio 3 抱怨 HTML 文档的小写 doctype 呢?
大概是因为在 XML 中,<!doctype html>是无效的;XML 需要DOCTYPE大写的关键字。因此,如果您想使用通用 XML 工具处理您的 HTML5 文档,您需要<!DOCTYPE html>.
<!doctype html>
DOCTYPE
<!DOCTYPE html>