HTML5权威指南
上QQ阅读APP看书,第一时间看更新

5.2 使用语句

JavaScript的基本元素是语句。一条语句代表着一条命令,通常以分号(;)结尾。实际上分号用不用都可以,不过加上分号可让代码更易阅读,并且可以在一行书写几条语句。代码清单5-2示范了脚本程序中的几条语句。

代码清单5-2 使用JavaScript语句

        <! DOCTYPE HTML>
        <html>
            <head>
              <title>Example</title>
            </head>
            <body>
              <script type="text/javascript">
document.writeln("This is a statement");
document.writeln("This is also a statement");
              </script>
            </body>
        </html>

浏览器依次执行每条语句。本例做的只是输出两条信息。结果如下(读者看到的输出结果有可能都在一行):

        This is a statement
        This is also a statement