如何用 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>
广告