Kommentare werden verwendet, um Inhalte auszublenden.
Um versteckte Kommentare in HTML zu erstellen, fügen wir das Tag ---- hinzu und beenden es mit -- >. Diese Kommentare ermöglichen es uns, den Code zu verstehen Kommentare können als Kommentare für sich selbst angezeigt werden und anderen ermöglichen, den Code zu verstehen, während der HTML-Code ausgeblendet wird, sodass der Browser ihn nicht auf der Webseite anzeigt.
Grammatik
<!—The text to be commented -->
Beispiel
lautet:<!DOCTYPE html> <html> <body> <!-- The text here is a commented and it is hidden on the web page --> <p>DLF stands for Delhi Land and Finance</p> </body> </html>
Beispiel
lautet:<!DOCTYPE html> <html> <body> <!-- <ul> <li> 1 </li> <li> 2 </li> <li> 3 </li> </ul> --> <p>Delhi is the capital of India</p> </body> </html>
Wir verwenden das Inline-Kommentar-Tag innerhalb des
-Tags.
Die chinesische Übersetzung vonBeispiel
lautet:<!DOCTYPE html> <html> <body> <!-- The text here is a commente and it is hidden on the web page --> <p>DLF stands for Delhi Land and Finance<!--FinanceDelhi Land and Finance is one of the largest commercial real estate developer in India.--></p> </body> </html>
Das obige ist der detaillierte Inhalt vonWie erstelle ich versteckte Kommentare in HTML?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!