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

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.com/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.org/news/html-comments-how-to-comment-out-your-html-code/

html怎么注释掉代码

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/390698.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

k均值算法 二分k均值算法_使用K均值对加勒比珊瑚礁进行分类

k均值算法 二分k均值算法Have you ever seen a Caribbean reef? Well if you haven’t, prepare yourself.您见过加勒比礁吗&#xff1f; 好吧&#xff0c;如果没有&#xff0c;请做好准备。 Today, we will be answering a question that, at face value, appears quite sim…

您好,这是我的第一篇文章

您好我是CYL 这是一个辣鸡博客 欢迎指教 转载于:https://www.cnblogs.com/pigba/p/8823472.html

08_MySQL DQL_SQL99标准中的多表查询(内连接)

# sql99语法/*语法&#xff1a; select 查询列表 from 表1 别名 【连接类型】 join 表2 别名 on 连接条件 【where 筛选条件】 【group by 分组】 【having 分组后筛选】 【order by 排序列表】分类内连接&#xff08;重点&#xff09;&#xff1a; inner外连接 左外&#xff0…

java中抽象类继承抽象类_Java中的抽象类用示例解释

java中抽象类继承抽象类Abstract classes are classes declared with abstract. They can be subclassed or extended, but cannot be instantiated. You can think of them as a class version of interfaces, or as an interface with actual code attached to the methods.抽…

新建VUX项目

使用Vue-cli安装Vux2 特别注意配置vux-loader。来自为知笔记(Wiz)

衡量试卷难度信度_我们可以通过数字来衡量语言难度吗?

衡量试卷难度信度Without a doubt, the world is “growing smaller” in terms of our access to people and content from other countries and cultures. Even the COVID-19 pandemic, which has curtailed international travel, has led to increasing virtual interactio…

Linux 题目总结

守护进程的工作就是打开一个端口&#xff0c;并且等待&#xff08;Listen&#xff09;进入连接。 如果客户端发起一个连接请求&#xff0c;守护进程就创建&#xff08;Fork&#xff09;一个子进程响应这个连接&#xff0c;而主进程继续监听其他的服务请求。 xinetd能够同时监听…

《精通Spring4.X企业应用开发实战》读后感第二章

一、配置Maven\tomcat https://www.cnblogs.com/Miracle-Maker/articles/6476687.html https://www.cnblogs.com/Knowledge-has-no-limit/p/7240585.html 二、创建数据库表 DROP DATABASE IF EXISTS sampledb; CREATE DATABASE sampledb DEFAULT CHARACTER SET utf8; USE sampl…

换了电脑如何使用hexo继续写博客

前言 我们知道&#xff0c;使用 Githubhexo 搭建一个个人博客确实需要花不少时间的&#xff0c;我们搭好博客后使用的挺好&#xff0c;但是如果我们有一天电脑突然坏了&#xff0c;或者换了系统&#xff0c;那么我们怎么使用 hexo 再发布文章到个人博客呢&#xff1f; 如果我们…

leetcode 525. 连续数组

给定一个二进制数组 nums , 找到含有相同数量的 0 和 1 的最长连续子数组&#xff0c;并返回该子数组的长度。 示例 1: 输入: nums [0,1] 输出: 2 说明: [0, 1] 是具有相同数量 0 和 1 的最长连续子数组。 示例 2: 输入: nums [0,1,0] 输出: 2 说明: [0, 1] (或 [1, 0]) 是…

实践作业2:黑盒测试实践(小组作业)每日任务记录1

会议时间&#xff1a;2017年11月24日20:00 – 20:30 会议地点&#xff1a;在线讨论 主 持 人&#xff1a;王晨懿 参会人员&#xff1a;王晨懿、余晨晨、郑锦波、杨潇、侯欢、汪元 记 录 人&#xff1a;杨潇 会议议题&#xff1a;软件测试课程作业-黑盒测试实践的启动计划 会议内…

视图可视化 后台_如何在单视图中可视化复杂的多层主题

视图可视化 后台Sometimes a dataset can tell many stories. Trying to show them all in a single visualization is great, but can be too much of a good thing. How do you avoid information overload without oversimplification?有时数据集可以讲述许多故事。 试图在…

iam身份验证以及访问控制_如何将受限访问IAM用户添加到EKS群集

iam身份验证以及访问控制介绍 (Introduction) Elastic Kubernetes Service (EKS) is the fully managed Kubernetes service from AWS. It is deeply integrated with many AWS services, such as AWS Identity and Access Management (IAM) (for authentication to the cluste…

一步一步构建自己的管理系统①

2019独角兽企业重金招聘Python工程师标准>>> 系统肯定要先选一个基础框架。 还算比较熟悉Spring. 就选Spring boot postgres mybatis. 前端用Angular. 开始搭开发环境&#xff0c;开在window上整的。 到时候再放到服务器上。 自己也去整了个小服务器&#xff0c;…

面向对象面向过程

1、面向语句&#xff1a; 直接写原生的sql语句&#xff0c;但是这样代码不容易维护。改一个方法会导致整个项目都要改动&#xff0c; 2、面向过程 定义一些函数&#xff0c;用的时候就调用不用就不调用。但是这也有解决不了的问题&#xff0c;如果要维护需要改动代码&#xff0…

python边玩边学_边听边学数据科学

python边玩边学Podcasts are a fun way to learn new stuff about the topics you like. Podcast hosts have to find a way to explain complex ideas in simple terms because no one would understand them otherwise &#x1f642; In this article I present a few episod…

react css多个变量_如何使用CSS变量和React上下文创建主题引擎

react css多个变量CSS variables are really cool. You can use them for a lot of things, like applying themes in your application with ease. CSS变量真的很棒。 您可以将它们用于很多事情&#xff0c;例如轻松地在应用程序中应用主题。 In this tutorial Ill show you …

vue 自定义 移动端筛选条件

1.创建组件 components/FilterBar/FilterBar.vue <template><div class"filterbar" :style"{top: top px}"><div class"container"><div class"row"><divclass"col":class"{selected: ind…

PSP

姓名&#xff1a;袁亚琴 日期&#xff1a;11月27日 教师&#xff1a;王建民 课程&#xff1a;PSP 项目计划日志&#xff1a; PSP Planning . Estimate Development . Analysis . Design Spec . Design Review . …

如何在Windows中打开和使用命令提示符

入门 (Getting started) Windows, MacOS and Linux have command line interfaces. Windows’ default command line is the command prompt. The command prompt allows users to use their computer without pointing and clicking with a mouse. Windows&#xff0c;MacOS和…