HTML最佳实践
HTML 最佳实践
编写易于维护与扩展的 HTML 文档。
以下为节选内容。
全局
以 DOCTYPE 为开头
激活标准模式需要 DOCTYPE。
Bad:
<html>
...
</html>
Good:
<!DOCTYPE html>
<html>
...
</html>
不要使用 XML 作为声明
你确定想写 XHTML?
Bad:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!DOCTYPE html>
Good:
<!DOCTYPE html>
不要什么字符都转义
如果你使用 UTF-8 编写 HTML 文档,那么几乎所有字符(包括表情)都可以直接写。
Bad:
<p><small>Copyright © 2014 W3C<sup>®</sup></small></p>
Good:
<p><small>Copyright © 2014 W3C<sup>®</sup></small></p>
使用字符实体引用来转义 &
、<
、>
、"
和 '
为了 HTML 文档不出错,这些字符应当始终被转义。
Bad:
<h1>The "&" character</h1>
Good:
<h1>The "&" character</h1>
使用字符值引用来转义控制或隐藏字符
这些字符很容易被误认为是其它字符,而且规范也不保证这些字符具有人类可读的名称。
Bad:
<p>This book can read in 1 hour.</p>
Good:
<p>This book can read in 1 hour.</p>
在注释内容周围添加空格
某些字符不能紧接在注释开始或结束的位置上。
Bad:
<!--This section is non-normative-->
Good:
<!-- This section is non-normative -->
一致性
一致性是可读性的关键。
- 不要杂糅空元素的格式
- 不要在标签和属性值周围添加空格
- 不要杂糅大小写
- 不要杂糅单双引号
- 不要用多个空格间隔属性
省略布尔型属性值
这么写更简单,对吧?
Bad:
<audio autoplay="autoplay" src="/audio/theme.mp3">
Good:
<audio autoplay src="/audio/theme.mp3">
省略命名空间
SVG 和 MathML 可以直接在 HTML 文档中使用。
Bad:
<svg xmlns="http://www.w3.org/2000/svg">
...
</svg>
Good:
<svg>
...
</svg>
首选默认隐式 ARIA 语义
有些元素在 HTML 文档中隐含了某种 ARIA 语义,不要特意把它们指出来。
Bad:
<nav role="navigation">
...
</nav>
<hr role="separator">
Good:
<nav>
...
</nav>
<hr>
根元素
添加 lang
属性
lang
属性有助于翻译 HTML 文档。
Bad:
<html>
Good:
<html lang="en-US">
保持 lang
属性值尽可能简短
日语只在日本使用,所以国家代码不是必须的。
Bad:
<html lang="ja-JP">
Good:
<html lang="ja">
文档元数据
指定次要链接资源的 MIME 类型
这提示了应用要怎么处理这项资源。
Bad:
<link href="/pdf" rel="alternate">
<link href="/feed" rel="alternate">
<link href="/css/screen.css" rel="stylesheet">
Good:
<link href="/pdf" rel="alternate" type="application/pdf">
<link href="/feed" rel="alternate" type="application/rss+xml">
<link href="/css/screen.css" rel="stylesheet">
别链接到 favicon.ico
几乎所有浏览器都会自动异步获取 /favicon.ico
。
添加 apple-touch-icon
Good:
<link href="/apple-touch-icon.png" rel="apple-touch-icon">
指定文档字符编码格式
UTF-8 暂时还不是所有浏览器的默认值。
Bad:
<head>
<title>HTML Best Practices</title>
</head>
Good:
<head>
<meta charset="UTF-8">
<title>HTML Best Practices</title>
</head>
不要使用过时的字符编码格式
HTTP 报文头部应该由服务器指定,简单点。
Bad:
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
Good:
<meta charset="UTF-8">
一开始就指定字符编码
规范要求字符编码必须在文档的前 1024 字节中被指定。
Bad:
<head>
<meta content="width=device-width" name="viewport">
<meta charset="UTF-8">
...
</head>
Good:
<head>
<meta charset="UTF-8">
<meta content="width=device-width" name="viewport">
...
</head>
省略 CSS 的 type
属性
在 HTML 中,style
元素的默认 type
属性值就是 text/css
。
Bad:
<style type="text/css">
...
</style>
Good:
<style>
...
</style>
区块
添加 body
元素
有时浏览器会在预料之外的地方补充 body
元素。
Bad:
<html>
<head>
...
</head>
...
</html>
Good:
<html>
<head>
...
</head>
<body>
...
</body>
</html>
分组内容
在 blockquote
元素中使用恰当的元素
blockquote
元素的内容是引用,而不仅仅是一堆字符。
Bad:
<blockquote>For writing maintainable and scalable HTML documents.</blockquote>
Good:
<blockquote>
<p>For writing maintainable and scalable HTML documents.</p>
</blockquote>
使用 ol
元素的 type
属性
有时标记会被附近的内容引用。如果使用 type
属性更改标记,就可以安全地引用。
Bad:
<head>
<style>
.toc {
list-style-type: upper-roman;
}
</style>
</head>
<body>
<ol class="toc">
<li>General</li>
<li>The root Element</li>
<li>Sections</li>
...
</ol>
</body>
Good:
<body>
<ol type="I">
<li>General</li>
<li>The root Element</li>
<li>Sections</li>
...
</ol>
</body>
尽可能避免 div
元素
实在没办法了,才用 div
元素。
Bad:
<div class="chapter">
...
</div>
Good:
<section>
...
</section>
文本语义
不要把一个链接拆成两半
a
元素可以包裹几乎所有元素(除了表单控制等交互性元素和 a
元素自身)。
Bad:
<h1><a href="https://whatwg.org/">WHATWG</a></h1>
<p><a href="https://whatwg.org/">A community maintaining and evolving HTML since 2004.</a></p>
Good:
<a href="https://whatwg.org/">
<h1>WHATWG</h1>
<p>A community maintaining and evolving HTML since 2004.</p>
</a>
按需使用 rel
、hreflang
和 type
属性
它们有助于提示应用怎么处理链接到的资源。
Bad:
<a href="/ja/pdf">Japanese PDF version</a>
Good:
<a href="/ja/pdf" hreflang="ja" rel="alternate" type="application/pdf">Japanese PDF version</a>
明确的链接文本
链接文本应该是对应资源的名称。
Bad:
<p><a href="/pdf" rel="alternate" type="application/pdf">Click here</a> to view PDF version.</p>
Good:
<p><a href="/pdf" rel="alternate" type="application/pdf">PDF version</a> is also available.</p>
尽可能避免 s
、i
、b
和 u
元素
这些元素的语义太难解读。
不要在 q
元素外使用引号
浏览器会自动加上引号。
Bad:
<q>“For writing maintainable and scalable HTML documents”</q>
Good:
<q>For writing maintainable and scalable HTML documents</q>
Also good:
“For writing maintainable and scalable HTML documents”
给 abbr
元素添加 title
属性
这是显示全称的唯一方式。
Bad:
<abbr>HBP</abbr>
Good:
<abbr title="HTML Best Practices">HBP</abbr>
给电脑无法识别的 time
元素添加 datetime
属性
当 datetime
属性不存在,time
元素内容的格式会受限制。
Bad:
<time>Dec 19, 2014</time>
Good:
<time datetime="2014-12-19">Dec 19, 2014</time>
使用 language-
前缀的 class
属性指定代码语言
没有统一的实现方式,但规范中有提及。
Bad:
<code><!DOCTYPE html></code>
Good:
<code class="language-html"><!DOCTYPE html></code>
在 br
元素后换行
使用 br
元素后应当换行。
Bad:
<p>HTML<br>Best<br>Practices</p>
Good:
<p>HTML<br>
Best<br>
Practices</p>
不要只为了格式好看就用 br
元素
br
元素不是用来给所有元素换行的,是用来在文本内容中换行的。
内嵌内容
按需为 img
元素添加 alt
属性
alt
属性对那些无法处理图片或禁用了图片加载的人很有帮助。
Bad:
<img src="/img/logo.png">
Good:
<img alt="HTML Best Practices" src="/img/logo.png">
若有可能则省略 alt
属性
有时你不一定知道 alt
要写什么。
留空 iframe
内容
iframe
的内容是受限的,留空比较安全。
Bad:
<iframe src="/ads/default.html">
<p>If your browser support inline frame, ads are displayed here.</p>
</iframe>
Good:
<iframe src="/ads/default.html"></iframe>
为 audio
和 video
元素提供备用内容
HTML 新引进的元素需要备用内容,以防旧版浏览器不支持。
Bad:
<video>
<source src="/mov/theme.mp4" type="video/mp4">
<source src="/mov/theme.ogv" type="video/ogg">
...
</video>
Good:
<video>
<source src="/mov/theme.mp4" type="video/mp4">
<source src="/mov/theme.ogv" type="video/ogg">
...
<iframe src="//www.youtube.com/embed/..." allowfullscreen></iframe>
</video>
表单
使用 label
元素包裹表单控制元素
label
元素有助于表单元素的聚焦。
Bad:
<p>Query: <input name="q" type="text"></p>
Good:
<p><label>Query: <input name="q" type="text"></label></p>
若有可能则省略 for
属性
label
元素可以包含表单元素。
Bad:
<label for="q">Query: </label><input id="q" name="q" type="text">
Good:
<label>Query: <input name="q" type="text"></label>
为 input
元素选择合适的 type
属性
使用 type
属性后,浏览器会赋予 input
元素一些新功能。
Good:
<label>Search keyword: <input name="q" type="search"></label>
给有 pattern
属性的 input
元素添加 title
属性
如果输入文本与 pattern
属性不匹配,title
属性的值就会被显示为提示。
Bad:
<input name="security-code" pattern="[0-9]{3}" type="text">
Good:
<input name="security-code" pattern="[0-9]{3}" title="A security code is a number in three figures." type="text">
为 progress
元素添加 max
属性
有了 max
属性,value
属性就易于编写。
Bad:
<progress value="0.5"> 50%</progress>
Good:
<progress max="100" value="50"> 50%</progress>
为 meter
元素添加 min
和 max
属性
有了 min
和 max
属性,value
属性就易于编写。
Bad:
<meter value="0.5"> 512GB used (1024GB total)</meter>
Good:
<meter min="0" max="1024" value="512"> 512GB used (1024GB total)</meter>
脚本
省略 JavaScript 的 type
属性
在 HTML 中,script
元素的默认 type
属性值就是 text/javascript
。
不要使用注入脚本的 script
元素
async
属性既简单又高效。
Bad:
<script>
var script = document.createElement("script");
script.async = true;
script.src = "//example.com/widget.js";
document.getElementsByTagName("head")[0].appendChild(script);
</script>
Good:
<script async defer src="https://example.com/widget.js"></script>
其它
使用相对路径引用内部链接
无网络链接时,相对链接在本机有更好的表现。
Bad:
<link rel="apple-touch-icon" href="http://you.example.com/apple-touch-icon-precomposed.png">
...
<p>You can find more at <a href="//you.example.com/contact.html">contact page</a>.</p>
Good:
<link rel="apple-touch-icon" href="/apple-touch-icon-precomposed.png">
...
<p>You can find more at <a href="/contact.html">contact page</a>.</p>