如何在 HTML 中创建隐藏注释?
注释用来隐藏内容。
如需在 HTML 中创建隐藏注释,我们添加 <! --- 标记,并以 -- > 结尾。此标记内的任何内容都将被隐藏。通过这些注释,我们可以轻松理解代码。
可以将注释视为给自己的备注,它允许其他人理解代码,同时也可以隐藏 HTML 代码,因此浏览器不会在网页上显示它。
语法
以下是在 HTML 中隐藏注释的语法。
<!—The text to be commented -->
示例
以下是用于在 HTML 中隐藏注释的示例程序。
<!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>
示例
以下是在 HTML 中隐藏注释的另一示例程序。
<!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>
我们在 <p> 标记内使用内联注释标记,以隐藏段落的内容。
示例
以下是使用内联注释标记在 HTML 中隐藏注释的示例程序。
<!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>
广告