の違いは何ですか:異なるJavaScriptのブロックタイプ
は、例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>
例2.
<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学校は言う:
例1。それぞれの文はsequeに ブラウザによって実行されます彼らは と書かれています。
例2 ブロックの目的は、 ステートメントのシーケンスを一緒に実行させることです。
上記の説明を説明してください。上記のコマンドでブラウザはどのように動作しますか?
私はJavascriptがアンという名前のブロックをサポートすることを知りませんでしたか? –