JavaScript 注释的使用技巧
1、最简单的代码形式。
// ******:就是最简单的JAVA代码注释语句。这样的语句不会在网页上呈现出来。

2、一个完整的使用JAVA注释 的文本程序案例。
<html>
<body>
<script type="text/javascript">
// 我这里写标题:
document.write("<h1>我的标题</h1>");
// 我这里写段落:
document.write("我的段落一。");
document.write("我的段落二。");
</script>
</body>
</html>

3、JAVA的多行注释使用技巧。/* */ 这个中间的注释不限定具体的行数。

4、一个多行注释的使用效果呈现。
<html>
<body>
<script type="text/javascript">
/*
这是多行代码注释
这句话不会展示出来
*/
document.write("<h1>百度经验</h1>");
document.write("越写越棒");
document.write("越写越精彩");
</script>
</body>
</html>

5、如果在代码执行语句前面加上一个//,这个代码就不会执行了。
<html>
<body>
<script type="text/javascript">
document.write("<h1>百度经验</h1>");
document.write("我可以出现在网页上");
//document.write("我被限制出现了");
</script>
</body>
</html>

6、如果在代码的前后加上多行注释 之后,这个代码也就不会执行了。
<html>
<body>
<script type="text/javascript">
/*
document.write("<h1>百度经验</h1>");
document.write("我可以出现在网页上");
//document.write("我被限制出现了");
*/
</script>
</body>
</html>
