Comment 语句
更新:2007 年 11 月
使 JScript 分析器忽略注释。
//single-line comment
// comment
//multiline comment
/*
comment
*/
//single-line conditional comment
//@CondStatement
//multiline conditional comment
/*@
condStatement
@*/
备注
condStatement 参数是条件编译被激活后使用的条件编译代码。如果使用语法 3,则在“//”和“@”字符间可以没有空格。
用注释来阻止 JScript 分析器读取脚本的某些部分。可使用注释在程序中加入解释性说明。
如果使用的是语法 1,则分析器将忽略在注释标记和行尾之间的任何文本。如果使用语法 2,则将忽略开始标记和结束标记之间的所有文本。
当与不支持该功能的浏览器之间保留兼容性时,语法 3 和 4 用来支持条件编译。这些浏览器把这些形式的注释分别视为语法 1 和语法 2。
示例
下面的示例阐释了 comment 语句的最常见用法。
function myfunction(arg1, arg2){
/* This is a multiline comment that
can span as many lines as necessary. */
var r = 0;
// This is a single line comment.
r = arg1 + arg2; // Sum the two arguments.
return(r);
}