9. JavaScript的注释(Comments in JavaScript) Q:我如何在JavaScript代码中插入注释? A:JavaScript支持三种不同类型的注释: 多行C样式的注释。 包括在/* 和 */ 内的内容都是注释,例如: /* This is a comment */ /* C-style comments can span as many lines as you like, as shown in this example */ C++样式的单行注释。这些注释以//开始,到行尾结束: // This is a one-line comment 使用HTML注释开始序列()。考虑这个实例: This is also a one-line JS comment because JS ignores the closing characters of HTML-style comments HTML样式的注释在JavaScript代码中并不常见。(//引导的单行注释更简单也更易读)。不过,强烈建议使用HTML注释将JavaScript代码从旧版本浏览器中隐藏。 10. 从旧版浏览器中隐藏JS代码 (Hidding JS code from old browsers) Q:我如何从不支持JavaScript的旧版中隐藏JS代码? A:为了阻止旧版浏览器显示JS代码,可以使用以下方法: 在开头的<script>标签后,立即放入一行HTML样式的注释开头样式,没有结尾内容,如此,你的脚本的头两行看起来应该像: <BR><script language="JavaScript"> <BR><!-- <BR>在脚本结尾,放入下列两行: <BR>//--> <BR></script> 如此,你的HTML文件就会包含下面的代码端:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn