是什麼區別: 不同的JavaScript塊類型
<script type="text/javascript">
{
document.write("<h1>This is a heading</h1>");
document.write("<p>This is a paragraph.</p>");
document.write("<p>This is another paragraph.</p>");
}
</script>
W3C學校說實施例2
例1.
<script type="text/javascript">
document.write("<h1>This is a heading</h1>");
document.write("<p>This is a paragraph.</p>");
document.write("<p>This is another paragraph.</p>");
</script>
:
實施例1。每條語句都由 seque中的瀏覽器執行他們是 寫的。
實例2. 塊的作用是使 語句的序列一起執行。
請解釋上述說明。瀏覽器對上述命令的行爲有何不同?
我不知道的Javascript支持的未命名的塊? –