Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
<body> 1 <br/> 2 <br/> <!--3--> <br/> 4 </body>
この例では、3 の場合と同様に、3 の無視タグを削除せずに、1 から 4 までのすべてのコードを無視します。
ブラウザーは、every<!--をコメントの開始および-->終了として解析します。次のように、別のコメント内にコメントがある場合:
<!--
-->
<!-- a <!-- b --> -->
ブラウザは次を解析します。
<!-- a <!-- b -->
が で閉じられて-->いると考えているため、コメントとして を出力します。<!-- a...b -->
<!-- a...
b -->
次のコメントの前にコメントタグを閉じ、その後再び開く必要があります