html怎么注释掉代码

HTML中的注释 (Comments in HTML)

The comment tag is an element used to leave notes, mostly related to the project or the website. This tag is frequently used to explain something in the code or leave some recommendations about the project. The comment tag also makes it easier for the developer to come back and understand the code he’s written at a later stage. Comments can also used for commenting out lines of code for debugging purposes.

comment标签是用于留下笔记的元素,主要与项目或网站有关。 该标签通常用于解释代码中的某些内容或对项目提出一些建议。 comment标签还使开发人员可以更轻松地返回并了解他在稍后阶段编写的代码。 注释还可以用于注释掉代码行以进行调试。

It is good practice to add comments to your code, especially when working with a team or at a company.

最好在代码中添加注释,特别是在与团队或公司合作时。

Comments are started with <!-- and ended with -->, and can span multiple lines. They can contain code or text, and won’t appear on the front-end of the website when a user visits a page. You can view comments through the Inspector Console, or by viewing Page Source.

注释以<!--开头,以-->结尾,并且可以跨越多行。 它们可以包含代码或文本,并且当用户访问页面时不会出现在网站的前端。 您可以通过Inspector控制台或通过查看页面源来查看注释。

(Example)

<!-- You can comment out a large number of lines like this.
Author: xyz
Date: xx/xx/xxxx
Purpose: abc
-->
Read more: https://html/tags/comment-tag/#ixzz4vtZHu5uR
<!DOCTYPE html>
<html>
	<body>
		<h1>FreeCodeCamp web</h1>
		<!-- Leave some space between the h1 and the p in order to understand what are we talking about-->
		<p>FreeCodeCamp is an open-source project that needs your help</p>
	        <!-- For readability of code use proper indentation -->
	</body>
</html>

有条件的评论 (Conditional Comments)

Conditional Comments defines some HTML tags to be excuted when a certain codition is fullfilled.

条件注释定义了一些HTML标记,当某个条件完成时,这些标记将被执行。

Conditional Comments are only recognised by Internet Explorer Version 5 through to Version 9 - IE5 - IE9.

Internet Explorer版本5到版本9-IE5-IE9仅可识别条件注释。

(Example)

<!DOCTYPE html>
<html>
	<body>
		<!--[if IE 9]>
    			<h1>FreeCodeCamp web</h1>
			<p>FreeCodeCamp is an open-source project that needs your help</p>	
		<![endif]-->
	</body>
</html>

IE条件注释 (IE Conditional Comments)

These comments are only available in Internet Explorer and can be used up to IE9. In the current times, there is a good change you will never see them, but it is good to know about their existance. Conditional comments are a way to serve a different experience for different client browsers. For example:

这些注释仅在Internet Explorer中可用,并且最多可用于IE9。 当前,有一个很好的变化,您将永远不会看到它们,但是很高兴知道它们的存在。 条件注释是一种为不同的客户端浏览器提供不同体验的方法。 例如:

<!--[if lt IE 9]> <p>Your browser is lower then IE9</p> <![endif]-->     
<!--[if IE 9]> <p>Your browser is IE9</p> <![endif]-->
<!--[if gt IE 9]> <p>Your browser is greater then IE9</p> <![endif]-->

有关HTML的更多信息: (More info on HTML:)

  • Beginner's guide to HTML

    HTML入门指南

  • Best HTML and HTML5 tutorials

    最佳HTML和HTML5教程

  • The HTML Handbook

    HTML手册

翻译自: https://www.freecodecamp/news/html-comments-how-to-comment-out-your-html-code/

html怎么注释掉代码

更多推荐

html怎么注释掉代码_HTML注释:如何注释掉您HTML代码