JavaScript 单行注释

  1. <html>
  2. <body>
  3.  
  4. <script type="text/javascript">
  5. // 这行代码输出标题:
  6. document.write("<h1>这是标题</h1>");
  7. // 这行代码输出段落:
  8. document.write("<p>这是段落。</p>");
  9. document.write("<p>这是另一个段落。</p>");
  10. </script>
  11.  
  12. </body>
  13. </html>