添加时间:2019-04-22 22:56:18 编辑:成都网站建设 文章内容: 1919个字 阅读时间:约6分钟
HTML注释规范写法应该遵循以下标准:
Comments must start with the four character sequence U+003C LESS-THAN SIGN, U+0021 EXCLAMATION MARK, U+002D HYPHEN-MINUS, U+002D HYPHEN-MINUS (” (U+003E) character, nor start with a U+002D HYPHEN-MINUS character (-) followed by a “>” (U+003E) character, nor contain two consecutive U+002D HYPHEN-MINUS characters (–), nor end with a U+002D HYPHEN-MINUS character (-). Finally, the comment must be ended by the three character sequence U+002D HYPHEN-MINUS, U+002D HYPHEN-MINUS, U+003E GREATER-THAN SIGN (–>).
标准写法:
|
错误的写法:
参考www.w3.org#Comments
一般用于简单的描述,如某些状态描述、属性描述等
注释内容前后各一个空格字符,注释位于要注释代码的上面,单独占一行
推荐:
<div>...div> |
不推荐:
<div>...div><div>...div> |
一般用于描述模块的名称以及模块开始与结束的位置
注释内容前后各一个空格字符,表示模块开始,
表示模块结束,模块与模块之间相隔一行
推荐写法:
<divclass="mod_a">...div><divclass="mod_b">...div> |
不推荐写法:
<divclass="mod_a">...div><divclass="mod_b">...div> |
当模块注释内再出现模块注释的时候,为了突出主要模块,嵌套模块不再使用
而改用
|
注释写在模块结尾标签底部,单独一行。
<divclass="mod_a"><divclass="mod_b">...div><divclass="mod_c">...div>div> |