HTML注释:
在HTML中,使用 标签进行注释。
<html> <body> <!--这是一段注释。注释不会在浏览器中显示。--> </body> </html>
CSS注释:
在CSS中,使用/*...*/进行注释。
/* Theme Name: AttorneyChild Description: Child theme for the Attorney theme Author: Zengl Author URI: http: //ft.wupo.info/about/ Template: attorney Version: 0.1.0 */
JavaScript与PHP注释:
在JavaScript与PHP中,使用 // 来编写单行注释,或者使用 /* 和 */ 来编写大的注释块。
<html> <body> <?php //This is a comment /* This is a comment block */ ?> </body> </html>
JAVA与CSS的文档注释
/** * @name: * @function: * @require: * @author: */
python注释
''' This is a comment block ''' #This is a comment
本文更新於 2014/10/09。