


When we write pages, comments are an indispensable part. On the one hand, comments can allow you to see the structure of the code clearly, making it easier to find. On the other hand, it is also conducive to the handover of work between colleagues. Of course, Code comments should also use in a standardized way. So today I will talk to you about annotations of front-end code. Friends in need can refer to it. I hope it will be helpful to you.
1. What are the uses of code comments?
1. It has the same function as pseudo code, writing a guiding algorithm idea for the function to be implemented next. Just not as detailed as pseudocode. However, the general algorithm idea for completing this function is also pointed out.
2. Give an explanatory note to those who read the code. Note that the only people looking at the code include yourself. Let people who look at your code quickly browse your code without having to read it line by line every time they read it in order to understand what you wrote.
2. Code comment specifications, follow the following principles
1. Can help readers better understand the code logic and structure
2. Special or difficult The understanding of the writing method can be explained
3. Special mark comments: such as TODO, FIXME and other marks with special meaning
4. File comments: Some regulations will require fixed format comments to be written in the header of the file, such as Author, protocol and other information
5. Documentation comments: Some regulations require API classes, functions, etc. to use documentation comments (such as jsdoc style)
6. Follow unified style specifications, such as certain spaces and blank lines, To ensure the readability of the comments themselves
3. How to write code comments
1. HTML code comments: ;
<!-- html中要注释的内容 --> 在web页面中,最常见的注释就是这种了。我们在布局页面结构的时候,会添加少许的注释方便我们查找与记忆我们的想法。 那么在页面中除了这样的注释外,还有那些注释呢,这里我列举一些: If条件不同版本浏览器注释列表: <!--[if !IE]>除IE外都可识别<![endif]--> <!--[if IE]> 所有的IE可识别 <![endif]--> <!--[if gt IE 5.0]> IE5.0以及IE5.0以上版本都可以识别 <![endif]--> <!--[if IE 6]> 仅IE6可识别 <![endif]--> <!--[if lt IE 6]> IE6以及IE6以下版本可识别 <![endif]--> <!--[if gte IE 6]> IE6以及IE6以上版本可识别 <![endif]--> <!--[if IE 7]> 仅IE7可识别 <![endif]--> <!--[if lt IE 7]> IE7以及IE7以下版本可识别 <![endif]--> <!--[if gte IE 7]> IE7以及IE7以上版本可识别 <![endif]-->
2. CSS code comments: /* Comment content*/
Different from the comment form in html, comments in css take the form of /*comments in css*/ . There is no single line or multiple lines of comment content.
/*.aa,.bb { height: 100px; margin: 1px; background: #ccc; }*/
3. JS code comments: //Comment content; or /* Comment content*/,
Different from html\css, comments in js have single-line and multi-line distinctions , and there are quite a lot of types. Let’s introduce them one by one below.
(1) // Two slashes represent a single line comment.
(2) Use as a single-line comment.
(3) /* * / Multi-line comments
// function out(obj){ // obj.innerHTML = "移出了"; // obj.style.background = "#ccc"; // }
Summary: Front-end developers should have a deep understanding of the purpose and principles of code comments, follow the comment conventions and use them in conjunction with tools, so that comments can become a good auxiliary to the code. Enhance readability and maintainability, thereby improving code quality.
The above is the detailed content of The role and usage demonstration of code comments in front-end development. For more information, please follow other related articles on the PHP Chinese website!

前端开发趋势总是在不断发展,有些趋势会长期流行。本篇文章给大家总结了2023 年将突出的一些前端开发趋势,分享给大家~

昨天刚发了一篇Python桌面开发库大全的微头条,就被同事安利了Flet这个库。这是一个非常新的库,今年6月份才发布的第一个版本,虽然很新,但是它背靠巨人-Flutter,可以让我们使用Python开发全平台软件,虽然目前还不支持全平台,但是根据作者的计划,Flutter支持的,它以后都会支持的,昨天简单学习了一下,真的非常棒,把它推荐给大家。后面我们可以用它做一系列东西。什么是FletFlet是一个框架,允许用你喜欢的语言构建交互式多用户Web,桌面和移动应用程序,而无需拥有前端开发的经验。主

随着互联网的飞速发展,前端开发技术也在不断改进和迭代。PHP和Angular是两种广泛应用于前端开发的技术。PHP是一种服务器端脚本语言,可以处理表单、生成动态页面和管理访问权限等任务。而Angular是一种JavaScript的框架,可以用于开发单页面应用和构建组件化的Web应用程序。本篇文章将介绍如何使用PHP和Angular进行前端开发,以及如何将它们

作为PHP开发人员,编写清晰、可维护的代码至关重要。代码注释是实现这一目标的关键,而phpDoc作为PHP的文档生成标准,为我们提供了强大而标准化的注释工具。PHPDoc基础PHPDoc注释以/*和/标记包围,并遵循特定的语法:/***函数或类的描述**@param类型$参数名描述*@return类型描述*/函数注释函数注释提供了以下信息:函数描述参数类型和描述返回值类型和描述例如:/***计算两个数的和**@paramint$a第一个数*@paramint$b第二个数*@returnint和*

掌握sessionStorage的作用,提升前端开发效率,需要具体代码示例随着互联网的快速发展,前端开发领域也日新月异。在进行前端开发时,我们经常需要处理大量的数据,并将其存储在浏览器中以便后续使用。而sessionStorage就是一种非常重要的前端开发工具,可以为我们提供临时的本地存储解决方案,提高开发效率。本文将介绍sessionStorage的作用,

node.red指Node-RED,是一款基于流的低代码编程工具,用于以新颖有趣的方式将硬件设备,API和在线服务连接在一起;它提供了一个基于浏览器的编辑器,使得我们可以轻松地使用编辑面板中的各种节点将流连接在一起,只需单击即可将其部署到其运行时。

前端开发中的JavaScript异步请求与数据处理经验总结在前端开发中,JavaScript是一门非常重要的语言,它不仅可以实现页面的交互和动态效果,还可以通过异步请求获取和处理数据。在这篇文章中,我将总结一些在处理异步请求和数据时的经验和技巧。一、使用XMLHttpRequest对象进行异步请求XMLHttpRequest对象是JavaScript用于发送

快速实现代码注释:PyCharm中的注释技巧大揭秘在编写程序时,良好的注释是非常重要的,它可以帮助其他人更好地理解代码的功能和逻辑,也方便自己日后阅读和维护代码。注释不仅包括对代码的解释,还可以记录下一步要做的工作、问题的解决方法、优化的思路等。PyCharm是一款非常流行的Python集成开发环境(IDE),它提供了许多快速实现代码注释的技巧,下面将介绍一


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 Linux new version
SublimeText3 Linux latest version
