web前端开发要记哪些单词

web前端开发要记哪些单词

在web前端开发中,要记住的单词包括HTML标签、CSS属性、JavaScript函数、框架名称、库名称、API术语等。HTML标签包括div、span、a、img等、CSS属性包括color、margin、padding、font-size等、JavaScript函数包括alert、getElementById、addEventListener等。其中,JavaScript函数尤为重要,因为它们是实现交互功能的关键。掌握这些函数不仅能让你更好地操作DOM,还能更灵活地处理事件和数据。例如,addEventListener函数可以让你在指定元素上添加事件监听器,从而实现用户交互的动态响应。

一、HTML标签

HTML(超文本标记语言)是前端开发的基础。所有的网页结构都是通过HTML标签来定义的。了解并掌握各种HTML标签是前端开发者必备的技能。HTML标签主要分为以下几类:

1. 基本结构标签:这些标签定义了网页的基本结构,例如、、等。标签定义了HTML文档的根元素,标签包含了文档的元数据(如标签、标签),<body>标签则包含了页面的内容。</p> </p> <p><p><strong>2. 文本内容标签</strong>:这些标签用于定义和格式化文本内容,例如</p> <p>、</p> <h1><del></p> <h6>、<span>等。</p> <p>标签用于定义段落,</p> <h1></del></p> <h6>标签用于定义标题,<span>标签用于在行内元素中包裹内容,以便应用样式。</p> </p> <p><p><strong>3. 链接和导航标签</strong>:这些标签用于创建链接和导航结构,例如<a>、</p> <nav>等。<a>标签用于创建超链接,</p> <nav>标签用于定义导航栏。</p> </p> <p><p><strong>4. 图像和多媒体标签</strong>:这些标签用于嵌入图像和多媒体内容,例如<img>、<audio>、<video>等。<img>标签用于嵌入图像,<audio>标签用于嵌入音频文件,<video>标签用于嵌入视频文件。</p> </p> <p><p><strong>5. 表单标签</strong>:这些标签用于创建表单和收集用户输入,例如</p> <form>、<input>、<textarea>、<button>等。</p> <form>标签定义了表单容器,<input>标签用于创建不同类型的输入字段,<textarea>标签用于创建多行文本输入框,<button>标签用于创建按钮。</p> </p> <p><p><strong>6. 表格标签</strong>:这些标签用于创建和格式化表格,例如</p> <table>、</p> <tr>、</p> <td>、</p> <th>等。</p> <table>标签定义了表格容器,</p> <tr>标签定义了表格行,</p> <td>标签定义了表格单元格,</p> <th>标签定义了表头单元格。</p> </p> <p><p><strong>7. 语义化标签</strong>:这些标签用于增强文档的语义,例如</p> <header>、</p> <footer>、</p> <section>、</p> <article>等。</p> <header>标签定义了文档或部分的头部,</p> <footer>标签定义了文档或部分的尾部,</p> <section>标签定义了文档的独立部分,</p> <article>标签定义了独立的内容块。</p> </p> <p><h2><span class="ez-toc-section" id="25E425BA258C25E325802581CSS25E525B1259E25E6258025A7"></span><strong>二、CSS属性</strong><span class="ez-toc-section-end"></span></h2></p> <p><p>CSS(层叠样式表)用于控制网页的样式和布局。掌握各种CSS属性是前端开发者设计美观和响应式网页的关键。CSS属性主要分为以下几类:</p> </p> <p><p><strong>1. 颜色和背景属性</strong>:这些属性用于设置元素的颜色和背景,例如color、background-color、background-image等。color属性用于设置文本颜色,background-color属性用于设置背景颜色,background-image属性用于设置背景图像。</p> </p> <p><p><strong>2. 文本和字体属性</strong>:这些属性用于控制文本的样式和字体,例如font-family、font-size、font-weight、line-height、text-align等。font-family属性用于设置字体,font-size属性用于设置字体大小,font-weight属性用于设置字体粗细,line-height属性用于设置行高,text-align属性用于设置文本对齐方式。</p> </p> <p><p><strong>3. 布局和定位属性</strong>:这些属性用于控制元素的布局和位置,例如display、position、top、right、bottom、left、float、clear等。display属性用于设置元素的显示方式,position属性用于设置元素的定位方式(如relative、absolute、fixed、sticky),top、right、bottom、left属性用于设置元素的位置,float属性用于设置元素的浮动,clear属性用于清除浮动。</p> </p> <p><p><strong>4. 盒模型属性</strong>:这些属性用于控制元素的盒模型,例如margin、padding、border、width、height等。margin属性用于设置外边距,padding属性用于设置内边距,border属性用于设置边框,width属性用于设置元素宽度,height属性用于设置元素高度。</p> </p> <p><p><strong>5. 动画和过渡属性</strong>:这些属性用于创建动画和过渡效果,例如animation、transition等。animation属性用于定义动画效果(如动画名称、持续时间、延迟时间、动画次数),transition属性用于定义过渡效果(如过渡属性、持续时间、过渡延迟、过渡函数)。</p> </p> <p><p><strong>6. 响应式设计属性</strong>:这些属性用于创建响应式网页,例如media、flex、grid等。media属性用于定义媒体查询,flex属性用于创建弹性布局,grid属性用于创建网格布局。</p> </p> <p><h2><span class="ez-toc-section" id="25E425B8258925E325802581JavaScript25E5258725BD25E6259525B0"></span><strong>三、JavaScript函数</strong><span class="ez-toc-section-end"></span></h2></p> <p><p>JavaScript是前端开发的核心编程语言,用于实现网页的动态交互和逻辑控制。掌握各种JavaScript函数是前端开发者编写高效和灵活代码的关键。JavaScript函数主要分为以下几类:</p> </p> <p><p><strong>1. DOM操作函数</strong>:这些函数用于操作文档对象模型(DOM),例如getElementById、getElementsByClassName、querySelector、appendChild、removeChild等。getElementById函数用于根据ID获取元素,getElementsByClassName函数用于根据类名获取元素集合,querySelector函数用于根据CSS选择器获取元素,appendChild函数用于添加子元素,removeChild函数用于移除子元素。</p> </p> <p><p><strong>2. 事件处理函数</strong>:这些函数用于处理用户交互事件,例如addEventListener、removeEventListener、preventDefault、stopPropagation等。addEventListener函数用于添加事件监听器,removeEventListener函数用于移除事件监听器,preventDefault函数用于阻止默认行为,stopPropagation函数用于阻止事件传播。</p> </p> <p><p><strong>3. 数组和对象操作函数</strong>:这些函数用于操作数组和对象,例如push、pop、shift、unshift、splice、slice、forEach、map、filter、reduce、Object.keys、Object.values等。push函数用于在数组末尾添加元素,pop函数用于移除数组末尾的元素,shift函数用于移除数组开头的元素,unshift函数用于在数组开头添加元素,splice函数用于修改数组内容,slice函数用于提取数组的一部分,forEach函数用于遍历数组,map函数用于创建一个新数组,filter函数用于筛选数组,reduce函数用于累加数组,Object.keys函数用于获取对象的所有属性名,Object.values函数用于获取对象的所有属性值。</p> </p> <p><p><strong>4. 异步操作函数</strong>:这些函数用于处理异步操作,例如setTimeout、setInterval、Promise、async、await等。setTimeout函数用于延迟执行代码,setInterval函数用于定期执行代码,Promise用于表示异步操作的结果,async用于定义异步函数,await用于等待异步操作的结果。</p> </p> <p><p><strong>5. 字符串操作函数</strong>:这些函数用于操作字符串,例如concat、split、slice、substring、indexOf、lastIndexOf、replace、toLowerCase、toUpperCase等。concat函数用于连接字符串,split函数用于拆分字符串,slice函数用于提取字符串的一部分,substring函数用于提取字符串的子字符串,indexOf函数用于查找子字符串的位置,lastIndexOf函数用于查找最后一个子字符串的位置,replace函数用于替换子字符串,toLowerCase函数用于将字符串转换为小写,toUpperCase函数用于将字符串转换为大写。</p> </p> <p><p><strong>6. 日期和时间操作函数</strong>:这些函数用于操作日期和时间,例如Date、getFullYear、getMonth、getDate、getHours、getMinutes、getSeconds、toLocaleDateString、toLocaleTimeString等。Date函数用于创建日期对象,getFullYear函数用于获取年份,getMonth函数用于获取月份,getDate函数用于获取日期,getHours函数用于获取小时,getMinutes函数用于获取分钟,getSeconds函数用于获取秒,toLocaleDateString函数用于格式化日期,toLocaleTimeString函数用于格式化时间。</p> </p> <p><h2><span class="ez-toc-section" id="25E5259B259B25E32580258125E625A1258625E6259E25B625E52590258D25E725A725B0"></span><strong>四、框架名称</strong><span class="ez-toc-section-end"></span></h2></p> <p><p>前端开发中常用的框架和库能够大大提高开发效率和代码质量。掌握各种前端框架和库的名称和基本用法是前端开发者的重要技能。常见的前端框架和库包括以下几类:</p> </p> <p><p><strong>1. JavaScript框架</strong>:这些框架用于构建复杂的单页面应用(SPA),例如React、Vue.js、Angular等。React是由Facebook开发的用于构建用户界面的库,Vue.js是一个渐进式JavaScript框架,Angular是由谷歌开发的用于构建动态Web应用的平台。</p> </p> <p><p><strong>2. CSS框架</strong>:这些框架用于快速构建美观和响应式的用户界面,例如Bootstrap、Tailwind CSS、Bulma等。Bootstrap是一个流行的开源CSS框架,Tailwind CSS是一个低级别的实用工具库,Bulma是一个现代化的CSS框架。</p> </p> <p><p><strong>3. 测试框架</strong>:这些框架用于编写和运行测试代码,例如Jest、Mocha、Chai等。Jest是由Facebook开发的JavaScript测试框架,Mocha是一个灵活的JavaScript测试框架,Chai是一个断言库。</p> </p> <p><p><strong>4. 动画库</strong>:这些库用于创建复杂的动画效果,例如GSAP、Anime.js等。GSAP是一个高性能的动画库,Anime.js是一个轻量级的JavaScript动画库。</p> </p> <p><p><strong>5. 数据可视化库</strong>:这些库用于创建数据可视化图表,例如D3.js、Chart.js等。D3.js是一个用于数据驱动文档操作的JavaScript库,Chart.js是一个简单易用的图表库。</p> </p> <p><p><strong>6. 表单处理库</strong>:这些库用于处理表单和验证,例如Formik、Yup等。Formik是一个用于构建和管理表单状态的库,Yup是一个JavaScript对象模式验证库。</p> </p> <p><h2><span class="ez-toc-section" id="25E425BA259425E32580258125E525BA259325E52590258D25E725A725B0"></span><strong>五、库名称</strong><span class="ez-toc-section-end"></span></h2></p> <p><p>前端开发中常用的库能够简化代码编写,提高开发效率。掌握各种前端库的名称和基本用法是前端开发者的重要技能。常见的前端库包括以下几类:</p> </p> <p><p><strong>1. DOM操作库</strong>:这些库用于简化DOM操作,例如jQuery、Zepto等。jQuery是一个流行的JavaScript库,用于简化HTML文档遍历和操作,Zepto是一个轻量级的jQuery替代品。</p> </p> <p><p><strong>2. HTTP请求库</strong>:这些库用于发送HTTP请求,例如Axios、Fetch等。Axios是一个基于Promise的HTTP请求库,Fetch是一个现代的浏览器内置API,用于发送网络请求。</p> </p> <p><p><strong>3. 状态管理库</strong>:这些库用于管理应用的状态,例如Redux、MobX等。Redux是一个可预测的状态容器,MobX是一个简单和可扩展的状态管理库。</p> </p> <p><p><strong>4. 路由库</strong>:这些库用于管理应用的路由,例如React Router、Vue Router等。React Router是一个用于React应用的路由库,Vue Router是一个用于Vue.js应用的路由库。</p> </p> <p><p><strong>5. 表单处理库</strong>:这些库用于处理表单和验证,例如Formik、Yup等。Formik是一个用于构建和管理表单状态的库,Yup是一个JavaScript对象模式验证库。</p> </p> <p><p><strong>6. 动画库</strong>:这些库用于创建复杂的动画效果,例如GSAP、Anime.js等。GSAP是一个高性能的动画库,Anime.js是一个轻量级的JavaScript动画库。</p> </p> <p><h2><span class="ez-toc-section" id="25E5258525AD25E325802581API25E6259C25AF25E825AF25AD"></span><strong>六、API术语</strong><span class="ez-toc-section-end"></span></h2></p> <p><p>API(应用程序接口)是前端开发中常用的术语,指的是软件组件之间的接口。掌握各种API术语和基本概念是前端开发者的重要技能。常见的API术语包括以下几类:</p> </p> <p><p><strong>1. REST API</strong>:REST(表述性状态转移)是一种基于HTTP协议的API设计风格。常见的术语包括GET、POST、PUT、DELETE、PATCH等。GET用于获取资源,POST用于创建资源,PUT用于更新资源,DELETE用于删除资源,PATCH用于部分更新资源。</p> </p> <p><p><strong>2. GraphQL</strong>:GraphQL是一种用于API查询语言和运行时,用于执行查询。常见的术语包括Query、Mutation、Subscription等。Query用于读取数据,Mutation用于修改数据,Subscription用于订阅实时数据更新。</p> </p> <p><p><strong>3. WebSocket</strong>:WebSocket是一种在单个TCP连接上进行全双工通信的协议。常见的术语包括连接、发送、接收、关闭等。连接用于建立WebSocket连接,发送用于发送消息,接收用于接收消息,关闭用于关闭WebSocket连接。</p> </p> <p><p><strong>4. JSON</strong>:JSON(JavaScript对象表示法)是一种轻量级的数据交换格式。常见的术语包括对象、数组、键值对等。对象用于表示键值对的集合,数组用于表示有序的值的集合,键值对用于表示属性和值。</p> </p> <p><p><strong>5. OAuth</strong>:OAuth是一种开放标准,用于授权第三方应用访问用户资源。常见的术语包括授权码、访问令牌、刷新令牌等。授权码用于获取访问令牌,访问令牌用于访问受保护的资源,刷新令牌用于刷新访问令牌。</p> </p> <p><p><strong>6. CORS</strong>:CORS(跨域资源共享)是一种机制,用于解决浏览器的同源策略限制。常见的术语包括预检请求、简单请求、复杂请求等。预检请求用于检查服务器是否允许跨域请求,简单请求用于不需要预检的请求,复杂请求用于需要预检的请求。</p> </p> <h2><span class="ez-toc-section" id="25E7259B25B825E5258525B325E9259725AE25E725AD2594FAQs25EF25BC259A"></span><strong>相关问答FAQs:</strong><span class="ez-toc-section-end"></span></h2> <p><strong>Web前端开发需要记哪些单词?</strong></p> <p>在学习Web前端开发的过程中,掌握一些专业术语和单词是非常重要的。这不仅有助于理解相关文档和教程,还能提高与其他开发者沟通的效率。以下是一些Web前端开发领域常见的单词和术语,涵盖了HTML、CSS、JavaScript等多个方面。</p> <ol> <li> <p><strong>HTML(超文本标记语言)</strong>:这是构建网页的基础语言,用于描述网页的结构和内容。了解HTML的基本标签,如<code><div></code>、<code><span></code>、<code><h1></code>至<code><h6></code>、<code><p></code>、<code><a></code>等是必须的。</p> </li> <li> <p><strong>CSS(层叠样式表)</strong>:用于设置网页的样式与布局。掌握选择器、属性以及相关的布局模型(如Flexbox和Grid)是前端开发的重要组成部分。</p> </li> <li> <p><strong>JavaScript</strong>:一种脚本语言,主要用于实现网页的动态效果和交互功能。学习基本的语法、数据类型、函数、对象以及事件处理等是提高前端开发能力的关键。</p> </li> <li> <p><strong>DOM(文档对象模型)</strong>:这是HTML和XML文档的编程接口,允许开发者通过JavaScript动态地访问和更新页面内容和结构。</p> </li> <li> <p><strong>API(应用程序编程接口)</strong>:通过API,前端可以与后端进行数据交互。理解RESTful API的概念及其请求方法(GET、POST、PUT、DELETE)非常重要。</p> </li> <li> <p><strong>响应式设计</strong>:这是一种设计理念,旨在使网页在不同设备上都能良好显示。学习媒体查询和流式布局是实现响应式设计的关键。</p> </li> <li> <p><strong>框架与库</strong>:如React、Vue.js、Angular等,这些工具可以加速开发过程,提高代码的可维护性和复用性。了解它们的基本用法和特性是前端开发者的必备技能。</p> </li> <li> <p><strong>版本控制</strong>:使用Git等版本控制工具可以帮助开发者管理代码的不同版本,方便团队协作。</p> </li> <li> <p><strong>构建工具</strong>:如Webpack、Gulp、Grunt等,它们可以帮助开发者自动化重复的任务,如代码压缩、文件合并和热更新。</p> </li> <li> <p><strong>调试工具</strong>:浏览器提供的开发者工具是前端开发的好帮手,能够帮助开发者调试JavaScript代码、分析性能、查看网络请求等。</p> </li> </ol> <p><strong>学习Web前端开发的有效方法有哪些?</strong></p> <p>学习Web前端开发的方法多种多样,以下是一些有效的学习策略,可以帮助初学者更快地掌握前端开发技能。</p> <ol> <li> <p><strong>在线课程和教程</strong>:许多平台提供了高质量的Web前端开发课程,如Udemy、Coursera、Codecademy等。选择适合自己的课程,从基础知识开始逐步深入。</p> </li> <li> <p><strong>实践项目</strong>:通过实际项目来巩固所学知识。可以尝试制作个人网站、博客或小型应用程序,这将有助于将理论知识应用到实际中。</p> </li> <li> <p><strong>阅读文档</strong>:熟悉常用框架和库的官方文档,了解其用法和特性。文档通常包含大量示例和最佳实践,学习时要多加参考。</p> </li> <li> <p><strong>参与开源项目</strong>:在GitHub等平台上寻找感兴趣的开源项目,参与其中可以提高代码能力,并且可以从其他开发者那里学习到不同的编程技巧。</p> </li> <li> <p><strong>加入社区</strong>:参与前端开发的社区,如Stack Overflow、前端开发者论坛等,可以向其他开发者提问,分享经验,获取反馈。</p> </li> <li> <p><strong>保持更新</strong>:Web技术更新迅速,定期阅读技术博客、参加开发者会议、关注行业动态等,有助于保持知识的前沿。</p> </li> <li> <p><strong>练习算法和数据结构</strong>:了解基本的算法和数据结构有助于提高编码能力,尤其是在处理复杂问题时。</p> </li> <li> <p><strong>代码审查</strong>:向经验丰富的开发者请教,进行代码审查,能够发现自己未曾注意的错误和改进的地方。</p> </li> <li> <p><strong>构建个人项目</strong>:尝试从零开始构建一个完整的项目,这不仅能够提升技术能力,还能丰富个人作品集。</p> </li> <li> <p><strong>设定学习目标</strong>:制定明确的学习计划和目标,定期评估自己的进展和学习成果,确保持续成长。</p> </li> </ol> <p><strong>如何提高Web前端开发的技能?</strong></p> <p>在Web前端开发的学习和工作中,不断提升技能是非常重要的。以下是一些有效的方法,可以帮助开发者提高自己的前端开发能力。</p> <ol> <li> <p><strong>参与代码挑战</strong>:在LeetCode、HackerRank等平台上参与编程挑战,可以提高逻辑思维能力和问题解决能力。这对日常开发工作也有积极影响。</p> </li> <li> <p><strong>定期复习基础知识</strong>:前端开发的基础知识是非常重要的,定期复习HTML、CSS和JavaScript的核心概念,确保对基础的扎实掌握。</p> </li> <li> <p><strong>扩展知识面</strong>:学习与前端开发相关的其他技术,如后端开发、数据库、云计算等,能够帮助开发者更全面地理解整个技术栈。</p> </li> <li> <p><strong>做笔记和总结</strong>:在学习过程中,及时做笔记和总结,记录下重要的知识点和经验教训,有助于后续的复习和查阅。</p> </li> <li> <p><strong>关注设计原则</strong>:了解用户体验(UX)和用户界面(UI)设计的基本原则,可以使开发者在开发过程中更关注用户需求,提高产品质量。</p> </li> <li> <p><strong>使用现代开发工具</strong>:了解和使用现代开发工具和技术,如TypeScript、Sass、PostCSS等,这些工具可以帮助提高开发效率和代码质量。</p> </li> <li> <p><strong>学习测试框架</strong>:了解如何为前端代码编写测试,学习使用如Jest、Mocha、Cypress等测试框架,有助于提高代码的可靠性。</p> </li> <li> <p><strong>定期参与技术分享</strong>:参加技术分享会或线上研讨会,了解业内的新技术和新趋势,与其他开发者交流经验,有助于开阔视野。</p> </li> <li> <p><strong>多练习不同项目类型</strong>:尝试不同类型的项目,如单页应用(SPA)、多页应用、移动端开发等,能够丰富自己的项目经验。</p> </li> <li> <p><strong>保持好奇心</strong>:前端开发技术变化迅速,保持对新技术的好奇心和探索精神,主动学习和尝试新工具和新框架,有助于不断进步。</p> </li> </ol> <p>通过以上方式,Web前端开发者能够不断提升自己的技能,适应快速变化的技术环境,成为更优秀的开发者。</p> <div class="entry-copyright"><p>原创文章,作者:极小狐,如若转载,请注明出处:https://devops.gitlab.cn/archives/198356</p></div> </div> <div class="entry-tag"></div> <div class="entry-action"> <div class="btn-zan" data-id="198356"><i class="wpcom-icon wi"><svg aria-hidden="true"><use xlink:href="#wi-thumb-up-fill"></use></svg></i> 赞 <span class="entry-action-num">(0)</span></div> </div> <div class="entry-bar"> <div class="entry-bar-inner"> <div class="entry-bar-author"> <a data-user="6" target="_blank" href="https://devops.gitlab.cn/archives/author/jihu003" class="avatar j-user-card"> <img alt='极小狐' src='//g.izt6.com/avatar/c1ee834fe4d1152269faf20e02fbba54?s=60&d=wavatar&r=g' srcset="//g.izt6.com/avatar/c1ee834fe4d1152269faf20e02fbba54?s=120&d=wavatar&r=g 2x" class='avatar avatar-60 photo' height='60' width='60' decoding='async'/><span class="author-name">极小狐</span> </a> </div> <div class="entry-bar-info"> <div class="info-item meta"> <a class="meta-item j-heart" href="javascript:;" data-id="198356"><i class="wpcom-icon wi"><svg aria-hidden="true"><use xlink:href="#wi-star"></use></svg></i> <span class="data">0</span></a> <a class="meta-item" href="#comments"><i class="wpcom-icon wi"><svg aria-hidden="true"><use xlink:href="#wi-comment"></use></svg></i> <span class="data">0</span></a> </div> <div class="info-item share"> <a class="meta-item mobile j-mobile-share" href="javascript:;" data-id="198356" data-qrcode="https://devops.gitlab.cn/archives/198356"><i class="wpcom-icon wi"><svg aria-hidden="true"><use xlink:href="#wi-share"></use></svg></i> 生成海报</a> <a class="meta-item wechat" data-share="wechat" target="_blank" rel="nofollow" href="#"> <i class="wpcom-icon wi"><svg aria-hidden="true"><use xlink:href="#wi-wechat"></use></svg></i> </a> <a class="meta-item weibo" data-share="weibo" target="_blank" rel="nofollow" href="#"> <i class="wpcom-icon wi"><svg aria-hidden="true"><use xlink:href="#wi-weibo"></use></svg></i> </a> <a class="meta-item qq" data-share="qq" target="_blank" rel="nofollow" href="#"> <i class="wpcom-icon wi"><svg aria-hidden="true"><use xlink:href="#wi-qq"></use></svg></i> </a> </div> <div class="info-item act"> <a href="javascript:;" id="j-reading"><i class="wpcom-icon wi"><svg aria-hidden="true"><use xlink:href="#wi-article"></use></svg></i></a> </div> </div> </div> </div> </div> <div class="entry-page"> <div class="entry-page-prev j-lazy" style="background-image: url('https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/images/lazy.png');" data-original="https://cos.gitlab.cn/wp-content/uploads/2024/09/389cbe68-901f-4cf9-83db-7b2a93b9b1c2-480x300.webp"> <a href="https://devops.gitlab.cn/archives/198353" title="前端开发规范标准要求有哪些" rel="prev"> <span>前端开发规范标准要求有哪些</span> </a> <div class="entry-page-info"> <span class="pull-left"><i class="wpcom-icon wi"><svg aria-hidden="true"><use xlink:href="#wi-arrow-left-double"></use></svg></i> 上一篇</span> <span class="pull-right">2024 年 9 月 7 日</span> </div> </div> <div class="entry-page-next j-lazy" style="background-image: url('https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/images/lazy.png');" data-original="https://cos.gitlab.cn/wp-content/uploads/2024/09/419f7942-0200-4ba0-8424-469754583831-480x300.webp"> <a href="https://devops.gitlab.cn/archives/198357" title="南京前端开发群有哪些公司" rel="next"> <span>南京前端开发群有哪些公司</span> </a> <div class="entry-page-info"> <span class="pull-right">下一篇 <i class="wpcom-icon wi"><svg aria-hidden="true"><use xlink:href="#wi-arrow-right-double"></use></svg></i></span> <span class="pull-left">2024 年 9 月 7 日</span> </div> </div> </div> <div class="entry-related-posts"> <h3 class="entry-related-title">相关推荐</h3><ul class="entry-related cols-3 post-loop post-loop-default"><li class="item"> <div class="item-img"> <a class="item-img-inner" href="https://devops.gitlab.cn/archives/208725" title="如何挑选前端开发" target="_blank" rel="bookmark"> <img width="480" height="300" src="https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/images/lazy.png" class="attachment-default size-default wp-post-image j-lazy" alt="如何挑选前端开发" decoding="async" fetchpriority="high" data-original="https://cos.gitlab.cn/wp-content/uploads/2024/09/96d3aaf8-edaa-4ec2-9875-87625c8784e4-480x300.webp" /> </a> <a class="item-category" href="https://devops.gitlab.cn/archives/category/qdkf" target="_blank">前端开发</a> </div> <div class="item-content"> <h3 class="item-title"> <a href="https://devops.gitlab.cn/archives/208725" target="_blank" rel="bookmark"> 如何挑选前端开发 </a> </h3> <div class="item-excerpt"> <p>在挑选前端开发人员时,应考虑技术能力、解决问题的能力、沟通能力、学习能力、团队协作、项目经验和工作态度。技术能力是最基本也是最重要的一点,前端开发人员需要熟练掌握HTML、CSS、…</p> </div> <div class="item-meta"> <div class="item-meta-li author"> <a data-user="3" target="_blank" href="https://devops.gitlab.cn/archives/author/xiaoxiao" class="avatar j-user-card"> <img alt='xiaoxiao' src='//g.izt6.com/avatar/95ffd0b35c412a1fbd8ac4c83346e795?s=60&d=wavatar&r=g' srcset="//g.izt6.com/avatar/95ffd0b35c412a1fbd8ac4c83346e795?s=120&d=wavatar&r=g 2x" class='avatar avatar-60 photo' height='60' width='60' decoding='async'/> <span>xiaoxiao</span> </a> </div> <span class="item-meta-li date">19小时前</span> <div class="item-meta-right"> <a class="item-meta-li comments" href="https://devops.gitlab.cn/archives/208725#comments" target="_blank" title="评论数"><i class="wpcom-icon wi"><svg aria-hidden="true"><use xlink:href="#wi-comment"></use></svg></i>0</a> </div> </div> </div> </li> <li class="item"> <div class="item-img"> <a class="item-img-inner" href="https://devops.gitlab.cn/archives/208722" title="MQTT前端如何开发" target="_blank" rel="bookmark"> <img width="480" height="300" src="https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/images/lazy.png" class="attachment-default size-default wp-post-image j-lazy" alt="MQTT前端如何开发" decoding="async" data-original="https://cos.gitlab.cn/wp-content/uploads/2024/09/895c10d4-2db2-443d-999d-5cf35e6cfe3e-480x300.webp" /> </a> <a class="item-category" href="https://devops.gitlab.cn/archives/category/qdkf" target="_blank">前端开发</a> </div> <div class="item-content"> <h3 class="item-title"> <a href="https://devops.gitlab.cn/archives/208722" target="_blank" rel="bookmark"> MQTT前端如何开发 </a> </h3> <div class="item-excerpt"> <p>MQTT前端开发需要选择合适的MQTT库、实现连接功能、发布和订阅消息、处理消息、确保安全性。其中选择合适的MQTT库尤为关键,因为它直接影响到开发效率和应用的性能。常见的MQTT…</p> </div> <div class="item-meta"> <div class="item-meta-li author"> <a data-user="3" target="_blank" href="https://devops.gitlab.cn/archives/author/xiaoxiao" class="avatar j-user-card"> <img alt='xiaoxiao' src='//g.izt6.com/avatar/95ffd0b35c412a1fbd8ac4c83346e795?s=60&d=wavatar&r=g' srcset="//g.izt6.com/avatar/95ffd0b35c412a1fbd8ac4c83346e795?s=120&d=wavatar&r=g 2x" class='avatar avatar-60 photo' height='60' width='60' decoding='async'/> <span>xiaoxiao</span> </a> </div> <span class="item-meta-li date">19小时前</span> <div class="item-meta-right"> <a class="item-meta-li comments" href="https://devops.gitlab.cn/archives/208722#comments" target="_blank" title="评论数"><i class="wpcom-icon wi"><svg aria-hidden="true"><use xlink:href="#wi-comment"></use></svg></i>0</a> </div> </div> </div> </li> <li class="item"> <div class="item-img"> <a class="item-img-inner" href="https://devops.gitlab.cn/archives/208721" title="前端开发 如何转型" target="_blank" rel="bookmark"> <img width="480" height="300" src="https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/images/lazy.png" class="attachment-default size-default wp-post-image j-lazy" alt="前端开发 如何转型" decoding="async" data-original="https://cos.gitlab.cn/wp-content/uploads/2024/09/d5daf048-6dc2-45d8-bd42-0c1478374263-480x300.webp" /> </a> <a class="item-category" href="https://devops.gitlab.cn/archives/category/qdkf" target="_blank">前端开发</a> </div> <div class="item-content"> <h3 class="item-title"> <a href="https://devops.gitlab.cn/archives/208721" target="_blank" rel="bookmark"> 前端开发 如何转型 </a> </h3> <div class="item-excerpt"> <p>前端开发转型的关键在于:扩展技术栈、掌握后端技能、提升设计能力、关注用户体验、强化项目管理。其中,扩展技术栈尤为重要。随着技术的快速发展,前端开发不仅限于HTML、CSS和Java…</p> </div> <div class="item-meta"> <div class="item-meta-li author"> <a data-user="2" target="_blank" href="https://devops.gitlab.cn/archives/author/devsecops" class="avatar j-user-card"> <img alt='DevSecOps' src='//g.izt6.com/avatar/784477b59c09d7731bd613f1c9a5555a?s=60&d=wavatar&r=g' srcset="//g.izt6.com/avatar/784477b59c09d7731bd613f1c9a5555a?s=120&d=wavatar&r=g 2x" class='avatar avatar-60 photo' height='60' width='60' decoding='async'/> <span>DevSecOps</span> </a> </div> <span class="item-meta-li date">19小时前</span> <div class="item-meta-right"> <a class="item-meta-li comments" href="https://devops.gitlab.cn/archives/208721#comments" target="_blank" title="评论数"><i class="wpcom-icon wi"><svg aria-hidden="true"><use xlink:href="#wi-comment"></use></svg></i>0</a> </div> </div> </div> </li> <li class="item"> <div class="item-img"> <a class="item-img-inner" href="https://devops.gitlab.cn/archives/208719" title="前端如何开发app" target="_blank" rel="bookmark"> <img width="480" height="300" src="https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/images/lazy.png" class="attachment-default size-default wp-post-image j-lazy" alt="前端如何开发app" decoding="async" data-original="https://cos.gitlab.cn/wp-content/uploads/2024/09/c52efeab-b2d1-4697-b4a2-64b02795d46a-480x300.webp" /> </a> <a class="item-category" href="https://devops.gitlab.cn/archives/category/qdkf" target="_blank">前端开发</a> </div> <div class="item-content"> <h3 class="item-title"> <a href="https://devops.gitlab.cn/archives/208719" target="_blank" rel="bookmark"> 前端如何开发app </a> </h3> <div class="item-excerpt"> <p>前端开发APP的方法主要有:使用Web技术开发混合APP、使用React Native、使用Flutter、使用PWA、使用Ionic。 其中,使用React Native是目前最…</p> </div> <div class="item-meta"> <div class="item-meta-li author"> <a data-user="5" target="_blank" href="https://devops.gitlab.cn/archives/author/jihu002" class="avatar j-user-card"> <img alt='jihu002' src='//g.izt6.com/avatar/30a11b25722c773805ac34c5f8e746ff?s=60&d=wavatar&r=g' srcset="//g.izt6.com/avatar/30a11b25722c773805ac34c5f8e746ff?s=120&d=wavatar&r=g 2x" class='avatar avatar-60 photo' height='60' width='60' decoding='async'/> <span>jihu002</span> </a> </div> <span class="item-meta-li date">19小时前</span> <div class="item-meta-right"> <a class="item-meta-li comments" href="https://devops.gitlab.cn/archives/208719#comments" target="_blank" title="评论数"><i class="wpcom-icon wi"><svg aria-hidden="true"><use xlink:href="#wi-comment"></use></svg></i>0</a> </div> </div> </div> </li> <li class="item"> <div class="item-img"> <a class="item-img-inner" href="https://devops.gitlab.cn/archives/208717" title="前端开发如何吹水" target="_blank" rel="bookmark"> <img width="480" height="300" src="https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/images/lazy.png" class="attachment-default size-default wp-post-image j-lazy" alt="前端开发如何吹水" decoding="async" data-original="https://cos.gitlab.cn/wp-content/uploads/2024/09/c4531964-f8e4-424c-83bb-bae648eeadfa-480x300.webp" /> </a> <a class="item-category" href="https://devops.gitlab.cn/archives/category/qdkf" target="_blank">前端开发</a> </div> <div class="item-content"> <h3 class="item-title"> <a href="https://devops.gitlab.cn/archives/208717" target="_blank" rel="bookmark"> 前端开发如何吹水 </a> </h3> <div class="item-excerpt"> <p>前端开发如何吹水?前端开发吹水的核心在于炫技、术语、趋势、团队协作、用户体验、未来发展。详细描述其中的炫技,展示自己的技术能力和项目经验是关键。你可以通过展示自己在React、Vu…</p> </div> <div class="item-meta"> <div class="item-meta-li author"> <a data-user="6" target="_blank" href="https://devops.gitlab.cn/archives/author/jihu003" class="avatar j-user-card"> <img alt='极小狐' src='//g.izt6.com/avatar/c1ee834fe4d1152269faf20e02fbba54?s=60&d=wavatar&r=g' srcset="//g.izt6.com/avatar/c1ee834fe4d1152269faf20e02fbba54?s=120&d=wavatar&r=g 2x" class='avatar avatar-60 photo' height='60' width='60' decoding='async'/> <span>极小狐</span> </a> </div> <span class="item-meta-li date">19小时前</span> <div class="item-meta-right"> <a class="item-meta-li comments" href="https://devops.gitlab.cn/archives/208717#comments" target="_blank" title="评论数"><i class="wpcom-icon wi"><svg aria-hidden="true"><use xlink:href="#wi-comment"></use></svg></i>0</a> </div> </div> </div> </li> <li class="item"> <div class="item-img"> <a class="item-img-inner" href="https://devops.gitlab.cn/archives/208715" title="如何开发前端sdk" target="_blank" rel="bookmark"> <img width="480" height="300" src="https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/images/lazy.png" class="attachment-default size-default wp-post-image j-lazy" alt="如何开发前端sdk" decoding="async" data-original="https://cos.gitlab.cn/wp-content/uploads/2024/09/8d4e4a0d-6d3d-468e-b390-54ecc5807189-480x300.webp" /> </a> <a class="item-category" href="https://devops.gitlab.cn/archives/category/qdkf" target="_blank">前端开发</a> </div> <div class="item-content"> <h3 class="item-title"> <a href="https://devops.gitlab.cn/archives/208715" target="_blank" rel="bookmark"> 如何开发前端sdk </a> </h3> <div class="item-excerpt"> <p>要开发前端SDK,你需要明确目标、选择合适的技术栈、设计API、实现功能、编写文档、进行测试。其中,明确目标是最重要的一步,因为它决定了整个SDK的方向和范围。明确目标不仅包括你希…</p> </div> <div class="item-meta"> <div class="item-meta-li author"> <a data-user="4" target="_blank" href="https://devops.gitlab.cn/archives/author/jihu001" class="avatar j-user-card"> <img alt='小小狐' src='//g.izt6.com/avatar/965a47dbee9076e7ae2954da2a5798bd?s=60&d=wavatar&r=g' srcset="//g.izt6.com/avatar/965a47dbee9076e7ae2954da2a5798bd?s=120&d=wavatar&r=g 2x" class='avatar avatar-60 photo' height='60' width='60' decoding='async'/> <span>小小狐</span> </a> </div> <span class="item-meta-li date">19小时前</span> <div class="item-meta-right"> <a class="item-meta-li comments" href="https://devops.gitlab.cn/archives/208715#comments" target="_blank" title="评论数"><i class="wpcom-icon wi"><svg aria-hidden="true"><use xlink:href="#wi-comment"></use></svg></i>0</a> </div> </div> </div> </li> <li class="item"> <div class="item-img"> <a class="item-img-inner" href="https://devops.gitlab.cn/archives/208710" title="公司如何开发前端" target="_blank" rel="bookmark"> <img width="480" height="300" src="https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/images/lazy.png" class="attachment-default size-default wp-post-image j-lazy" alt="公司如何开发前端" decoding="async" data-original="https://cos.gitlab.cn/wp-content/uploads/2024/09/f1b0aea8-c044-433f-98c8-d3ca2428bf66-480x300.webp" /> </a> <a class="item-category" href="https://devops.gitlab.cn/archives/category/qdkf" target="_blank">前端开发</a> </div> <div class="item-content"> <h3 class="item-title"> <a href="https://devops.gitlab.cn/archives/208710" target="_blank" rel="bookmark"> 公司如何开发前端 </a> </h3> <div class="item-excerpt"> <p>公司可以通过组建一个专业团队、选择合适的技术栈、使用敏捷开发方法、进行持续测试和优化、重视用户体验、使用协作工具来开发高效的前端。组建一个专业团队是关键,团队成员应包括前端开发工程…</p> </div> <div class="item-meta"> <div class="item-meta-li author"> <a data-user="6" target="_blank" href="https://devops.gitlab.cn/archives/author/jihu003" class="avatar j-user-card"> <img alt='极小狐' src='//g.izt6.com/avatar/c1ee834fe4d1152269faf20e02fbba54?s=60&d=wavatar&r=g' srcset="//g.izt6.com/avatar/c1ee834fe4d1152269faf20e02fbba54?s=120&d=wavatar&r=g 2x" class='avatar avatar-60 photo' height='60' width='60' decoding='async'/> <span>极小狐</span> </a> </div> <span class="item-meta-li date">19小时前</span> <div class="item-meta-right"> <a class="item-meta-li comments" href="https://devops.gitlab.cn/archives/208710#comments" target="_blank" title="评论数"><i class="wpcom-icon wi"><svg aria-hidden="true"><use xlink:href="#wi-comment"></use></svg></i>0</a> </div> </div> </div> </li> <li class="item"> <div class="item-img"> <a class="item-img-inner" href="https://devops.gitlab.cn/archives/208711" title="前端开发如何设计前端页面" target="_blank" rel="bookmark"> <img width="480" height="300" src="https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/images/lazy.png" class="attachment-default size-default wp-post-image j-lazy" alt="前端开发如何设计前端页面" decoding="async" data-original="https://cos.gitlab.cn/wp-content/uploads/2024/09/dddf3fe5-3f45-4d8b-973e-8ed037cf1ffb-480x300.webp" /> </a> <a class="item-category" href="https://devops.gitlab.cn/archives/category/qdkf" target="_blank">前端开发</a> </div> <div class="item-content"> <h3 class="item-title"> <a href="https://devops.gitlab.cn/archives/208711" target="_blank" rel="bookmark"> 前端开发如何设计前端页面 </a> </h3> <div class="item-excerpt"> <p>前端开发设计前端页面的方法包括:用户体验设计、响应式布局、组件化设计、优化性能、跨浏览器兼容性。用户体验设计是最重要的一点,因为它直接影响用户对网站的满意度和使用黏性。用户体验设计…</p> </div> <div class="item-meta"> <div class="item-meta-li author"> <a data-user="4" target="_blank" href="https://devops.gitlab.cn/archives/author/jihu001" class="avatar j-user-card"> <img alt='小小狐' src='//g.izt6.com/avatar/965a47dbee9076e7ae2954da2a5798bd?s=60&d=wavatar&r=g' srcset="//g.izt6.com/avatar/965a47dbee9076e7ae2954da2a5798bd?s=120&d=wavatar&r=g 2x" class='avatar avatar-60 photo' height='60' width='60' decoding='async'/> <span>小小狐</span> </a> </div> <span class="item-meta-li date">19小时前</span> <div class="item-meta-right"> <a class="item-meta-li comments" href="https://devops.gitlab.cn/archives/208711#comments" target="_blank" title="评论数"><i class="wpcom-icon wi"><svg aria-hidden="true"><use xlink:href="#wi-comment"></use></svg></i>0</a> </div> </div> </div> </li> <li class="item"> <div class="item-img"> <a class="item-img-inner" href="https://devops.gitlab.cn/archives/208709" title="前端开发如何创新" target="_blank" rel="bookmark"> <img width="480" height="300" src="https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/images/lazy.png" class="attachment-default size-default wp-post-image j-lazy" alt="前端开发如何创新" decoding="async" data-original="https://cos.gitlab.cn/wp-content/uploads/2024/09/84b1ad9c-75db-42f1-b74c-86bc0d8187e4-480x300.webp" /> </a> <a class="item-category" href="https://devops.gitlab.cn/archives/category/qdkf" target="_blank">前端开发</a> </div> <div class="item-content"> <h3 class="item-title"> <a href="https://devops.gitlab.cn/archives/208709" target="_blank" rel="bookmark"> 前端开发如何创新 </a> </h3> <div class="item-excerpt"> <p>前端开发如何创新?前端开发的创新可以通过使用新技术、改进用户体验、优化性能、利用自动化工具、增强可访问性来实现。使用新技术是其中的一项重要策略。随着JavaScript框架和库的发…</p> </div> <div class="item-meta"> <div class="item-meta-li author"> <a data-user="5" target="_blank" href="https://devops.gitlab.cn/archives/author/jihu002" class="avatar j-user-card"> <img alt='jihu002' src='//g.izt6.com/avatar/30a11b25722c773805ac34c5f8e746ff?s=60&d=wavatar&r=g' srcset="//g.izt6.com/avatar/30a11b25722c773805ac34c5f8e746ff?s=120&d=wavatar&r=g 2x" class='avatar avatar-60 photo' height='60' width='60' decoding='async'/> <span>jihu002</span> </a> </div> <span class="item-meta-li date">19小时前</span> <div class="item-meta-right"> <a class="item-meta-li comments" href="https://devops.gitlab.cn/archives/208709#comments" target="_blank" title="评论数"><i class="wpcom-icon wi"><svg aria-hidden="true"><use xlink:href="#wi-comment"></use></svg></i>0</a> </div> </div> </div> </li> <li class="item"> <div class="item-img"> <a class="item-img-inner" href="https://devops.gitlab.cn/archives/208707" title="前端开发如何创作" target="_blank" rel="bookmark"> <img width="480" height="300" src="https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/images/lazy.png" class="attachment-default size-default wp-post-image j-lazy" alt="前端开发如何创作" decoding="async" data-original="https://cos.gitlab.cn/wp-content/uploads/2024/09/c9ae3f5a-b4e2-4381-aae6-d7ed721a016c-480x300.webp" /> </a> <a class="item-category" href="https://devops.gitlab.cn/archives/category/qdkf" target="_blank">前端开发</a> </div> <div class="item-content"> <h3 class="item-title"> <a href="https://devops.gitlab.cn/archives/208707" target="_blank" rel="bookmark"> 前端开发如何创作 </a> </h3> <div class="item-excerpt"> <p>前端开发创作的关键在于:了解用户需求、选择合适的技术栈、设计良好的用户界面、编写高效的代码、进行不断测试和优化。 其中,了解用户需求是最为重要的一点。用户需求决定了整个项目的方向和…</p> </div> <div class="item-meta"> <div class="item-meta-li author"> <a data-user="4" target="_blank" href="https://devops.gitlab.cn/archives/author/jihu001" class="avatar j-user-card"> <img alt='小小狐' src='//g.izt6.com/avatar/965a47dbee9076e7ae2954da2a5798bd?s=60&d=wavatar&r=g' srcset="//g.izt6.com/avatar/965a47dbee9076e7ae2954da2a5798bd?s=120&d=wavatar&r=g 2x" class='avatar avatar-60 photo' height='60' width='60' decoding='async'/> <span>小小狐</span> </a> </div> <span class="item-meta-li date">19小时前</span> <div class="item-meta-right"> <a class="item-meta-li comments" href="https://devops.gitlab.cn/archives/208707#comments" target="_blank" title="评论数"><i class="wpcom-icon wi"><svg aria-hidden="true"><use xlink:href="#wi-comment"></use></svg></i>0</a> </div> </div> </div> </li> </ul> </div> <div id="comments" class="entry-comments"> <div id="respond" class="comment-respond"> <h3 id="reply-title" class="comment-reply-title">发表回复 <small><a rel="nofollow" id="cancel-comment-reply-link" href="/archives/198356#respond" style="display:none;"><i class="wpcom-icon wi"><svg aria-hidden="true"><use xlink:href="#wi-close"></use></svg></i></a></small></h3><form action="https://devops.gitlab.cn/wp-comments-post.php" method="post" id="commentform" class="comment-form" novalidate><p class="comment-notes"><span id="email-notes">您的电子邮箱地址不会被公开。</span> <span class="required-field-message">必填项已用 <span class="required">*</span> 标注</span></p><div class="comment-form-comment"><textarea id="comment" name="comment" class="required" rows="4" placeholder="写下你的评论…"></textarea><div class="comment-form-smile j-smilies" data-target="#comment"><i class="wpcom-icon wi smile-icon"><svg aria-hidden="true"><use xlink:href="#wi-emotion"></use></svg></i></div></div><div class="comment-form-author"><label for="author"><span class="required">*</span>昵称:</label><input id="author" name="author" type="text" value="" size="30" class="required"></div> <div class="comment-form-email"><label for="email"><span class="required">*</span>邮箱:</label><input id="email" name="email" type="text" value="" class="required"></div> <div class="comment-form-url"><label for="url">网址:</label><input id="url" name="url" type="text" value="" size="30"></div> <label class="comment-form-cookies-consent"><input id="wp-comment-cookies-consent" name="wp-comment-cookies-consent" type="checkbox" value="yes"> 记住昵称、邮箱和网址,下次评论免输入</label> <div class="form-submit"><button name="submit" type="submit" id="submit" class="btn btn-primary btn-xs submit">提交</button> <input type='hidden' name='comment_post_ID' value='198356' id='comment_post_ID' /> <input type='hidden' name='comment_parent' id='comment_parent' value='0' /> </div></form> </div><!-- #respond --> </div><!-- .comments-area --> </article> </main> <aside class="sidebar"> <div class="widget ez-toc"><div id="ez-toc-widget-container" class="ez-toc-widget-container ez-toc-v2_0_68_1 ez-toc-widget counter-hierarchy ez-toc-widget-container ez-toc-affix ez-toc-widget-direction"> <h3 class="widget-title"><span> <span class="ez-toc-title-container"> <style> #ezw_tco-3 .ez-toc-title{ font-size: 120%; font-weight: 500; color: #000; } #ezw_tco-3 .ez-toc-widget-container ul.ez-toc-list li.active{ background-color: #ededed; } </style> <span class="ez-toc-title-toggle"> <span class="ez-toc-title " >文章目录</span><a href="#" class="ez-toc-pull-right ez-toc-btn ez-toc-btn-xs ez-toc-btn-default ez-toc-toggle" aria-label="Widget Easy TOC toggle icon"><span style="border: 0;padding: 0;margin: 0;position: absolute !important;height: 1px;width: 1px;overflow: hidden;clip: rect(1px 1px 1px 1px);clip: rect(1px, 1px, 1px, 1px);clip-path: inset(50%);white-space: nowrap;">Toggle Table of Content</span><span class=""><span class="eztoc-hide">Toggle</span><span class="ez-toc-icon-toggle-span"></span></span></a> </span> </span> </span></h3> <nav> <ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-1" href="#25E425B8258025E325802581HTML25E625A0258725E725AD25BE" title="一、HTML标签">一、HTML标签</a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-2" href="#25E425BA258C25E325802581CSS25E525B1259E25E6258025A7" title="二、CSS属性">二、CSS属性</a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-3" href="#25E425B8258925E325802581JavaScript25E5258725BD25E6259525B0" title="三、JavaScript函数">三、JavaScript函数</a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-4" href="#25E5259B259B25E32580258125E625A1258625E6259E25B625E52590258D25E725A725B0" title="四、框架名称">四、框架名称</a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-5" href="#25E425BA259425E32580258125E525BA259325E52590258D25E725A725B0" title="五、库名称">五、库名称</a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-6" href="#25E5258525AD25E325802581API25E6259C25AF25E825AF25AD" title="六、API术语">六、API术语</a></li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class="ez-toc-link ez-toc-heading-7" href="#25E7259B25B825E5258525B325E9259725AE25E725AD2594FAQs25EF25BC259A" title="相关问答FAQs:">相关问答FAQs:</a></li></ul></nav> </div> </div><div class="widget widget_lastest_products"> <ul class="p-list"> <li class="col-xs-24 col-md-12 p-item"> <div class="p-item-wrap"> <a class="thumb" href="https://devops.gitlab.cn/archives/208725"> <img width="480" height="300" src="https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/images/lazy.png" class="attachment-default size-default wp-post-image j-lazy" alt="如何挑选前端开发" decoding="async" data-original="https://cos.gitlab.cn/wp-content/uploads/2024/09/96d3aaf8-edaa-4ec2-9875-87625c8784e4-480x300.webp" /> </a> <h4 class="title"> <a href="https://devops.gitlab.cn/archives/208725" title="如何挑选前端开发"> 如何挑选前端开发 </a> </h4> </div> </li> <li class="col-xs-24 col-md-12 p-item"> <div class="p-item-wrap"> <a class="thumb" href="https://devops.gitlab.cn/archives/208722"> <img width="480" height="300" src="https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/images/lazy.png" class="attachment-default size-default wp-post-image j-lazy" alt="MQTT前端如何开发" decoding="async" data-original="https://cos.gitlab.cn/wp-content/uploads/2024/09/895c10d4-2db2-443d-999d-5cf35e6cfe3e-480x300.webp" /> </a> <h4 class="title"> <a href="https://devops.gitlab.cn/archives/208722" title="MQTT前端如何开发"> MQTT前端如何开发 </a> </h4> </div> </li> <li class="col-xs-24 col-md-12 p-item"> <div class="p-item-wrap"> <a class="thumb" href="https://devops.gitlab.cn/archives/208721"> <img width="480" height="300" src="https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/images/lazy.png" class="attachment-default size-default wp-post-image j-lazy" alt="前端开发 如何转型" decoding="async" data-original="https://cos.gitlab.cn/wp-content/uploads/2024/09/d5daf048-6dc2-45d8-bd42-0c1478374263-480x300.webp" /> </a> <h4 class="title"> <a href="https://devops.gitlab.cn/archives/208721" title="前端开发 如何转型"> 前端开发 如何转型 </a> </h4> </div> </li> <li class="col-xs-24 col-md-12 p-item"> <div class="p-item-wrap"> <a class="thumb" href="https://devops.gitlab.cn/archives/208719"> <img width="480" height="300" src="https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/images/lazy.png" class="attachment-default size-default wp-post-image j-lazy" alt="前端如何开发app" decoding="async" data-original="https://cos.gitlab.cn/wp-content/uploads/2024/09/c52efeab-b2d1-4697-b4a2-64b02795d46a-480x300.webp" /> </a> <h4 class="title"> <a href="https://devops.gitlab.cn/archives/208719" title="前端如何开发app"> 前端如何开发app </a> </h4> </div> </li> <li class="col-xs-24 col-md-12 p-item"> <div class="p-item-wrap"> <a class="thumb" href="https://devops.gitlab.cn/archives/208717"> <img width="480" height="300" src="https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/images/lazy.png" class="attachment-default size-default wp-post-image j-lazy" alt="前端开发如何吹水" decoding="async" data-original="https://cos.gitlab.cn/wp-content/uploads/2024/09/c4531964-f8e4-424c-83bb-bae648eeadfa-480x300.webp" /> </a> <h4 class="title"> <a href="https://devops.gitlab.cn/archives/208717" title="前端开发如何吹水"> 前端开发如何吹水 </a> </h4> </div> </li> <li class="col-xs-24 col-md-12 p-item"> <div class="p-item-wrap"> <a class="thumb" href="https://devops.gitlab.cn/archives/208715"> <img width="480" height="300" src="https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/images/lazy.png" class="attachment-default size-default wp-post-image j-lazy" alt="如何开发前端sdk" decoding="async" data-original="https://cos.gitlab.cn/wp-content/uploads/2024/09/8d4e4a0d-6d3d-468e-b390-54ecc5807189-480x300.webp" /> </a> <h4 class="title"> <a href="https://devops.gitlab.cn/archives/208715" title="如何开发前端sdk"> 如何开发前端sdk </a> </h4> </div> </li> <li class="col-xs-24 col-md-12 p-item"> <div class="p-item-wrap"> <a class="thumb" href="https://devops.gitlab.cn/archives/208711"> <img width="480" height="300" src="https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/images/lazy.png" class="attachment-default size-default wp-post-image j-lazy" alt="前端开发如何设计前端页面" decoding="async" data-original="https://cos.gitlab.cn/wp-content/uploads/2024/09/dddf3fe5-3f45-4d8b-973e-8ed037cf1ffb-480x300.webp" /> </a> <h4 class="title"> <a href="https://devops.gitlab.cn/archives/208711" title="前端开发如何设计前端页面"> 前端开发如何设计前端页面 </a> </h4> </div> </li> <li class="col-xs-24 col-md-12 p-item"> <div class="p-item-wrap"> <a class="thumb" href="https://devops.gitlab.cn/archives/208710"> <img width="480" height="300" src="https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/images/lazy.png" class="attachment-default size-default wp-post-image j-lazy" alt="公司如何开发前端" decoding="async" data-original="https://cos.gitlab.cn/wp-content/uploads/2024/09/f1b0aea8-c044-433f-98c8-d3ca2428bf66-480x300.webp" /> </a> <h4 class="title"> <a href="https://devops.gitlab.cn/archives/208710" title="公司如何开发前端"> 公司如何开发前端 </a> </h4> </div> </li> <li class="col-xs-24 col-md-12 p-item"> <div class="p-item-wrap"> <a class="thumb" href="https://devops.gitlab.cn/archives/208709"> <img width="480" height="300" src="https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/images/lazy.png" class="attachment-default size-default wp-post-image j-lazy" alt="前端开发如何创新" decoding="async" data-original="https://cos.gitlab.cn/wp-content/uploads/2024/09/84b1ad9c-75db-42f1-b74c-86bc0d8187e4-480x300.webp" /> </a> <h4 class="title"> <a href="https://devops.gitlab.cn/archives/208709" title="前端开发如何创新"> 前端开发如何创新 </a> </h4> </div> </li> <li class="col-xs-24 col-md-12 p-item"> <div class="p-item-wrap"> <a class="thumb" href="https://devops.gitlab.cn/archives/208707"> <img width="480" height="300" src="https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/images/lazy.png" class="attachment-default size-default wp-post-image j-lazy" alt="前端开发如何创作" decoding="async" data-original="https://cos.gitlab.cn/wp-content/uploads/2024/09/c9ae3f5a-b4e2-4381-aae6-d7ed721a016c-480x300.webp" /> </a> <h4 class="title"> <a href="https://devops.gitlab.cn/archives/208707" title="前端开发如何创作"> 前端开发如何创作 </a> </h4> </div> </li> </ul> </div><div class="widget widget_qapress_list"> <ul> <li> <a target="_blank" href="https://devops.gitlab.cn/qapress/78236.html" title="沈阳软件后端开发多少钱"> 沈阳软件后端开发多少钱 </a> </li> <li> <a target="_blank" href="https://devops.gitlab.cn/qapress/78235.html" title="微信小程序如何开发后端"> 微信小程序如何开发后端 </a> </li> <li> <a target="_blank" href="https://devops.gitlab.cn/qapress/78232.html" title="如何做线上商城后端开发"> 如何做线上商城后端开发 </a> </li> <li> <a target="_blank" href="https://devops.gitlab.cn/qapress/78230.html" title="如何用spring进行后端开发"> 如何用spring进行后端开发 </a> </li> <li> <a target="_blank" href="https://devops.gitlab.cn/qapress/78227.html" title="后端开发语言都有哪些类型的软件"> 后端开发语言都有哪些类型的软件 </a> </li> <li> <a target="_blank" href="https://devops.gitlab.cn/qapress/78217.html" title="蚌埠后端开发招聘岗位有哪些"> 蚌埠后端开发招聘岗位有哪些 </a> </li> <li> <a target="_blank" href="https://devops.gitlab.cn/qapress/78216.html" title="后端开发包含哪些语言要素"> 后端开发包含哪些语言要素 </a> </li> <li> <a target="_blank" href="https://devops.gitlab.cn/qapress/78215.html" title="网站开发后端有哪些"> 网站开发后端有哪些 </a> </li> <li> <a target="_blank" href="https://devops.gitlab.cn/qapress/78214.html" title="证券后端开发方向有哪些"> 证券后端开发方向有哪些 </a> </li> <li> <a target="_blank" href="https://devops.gitlab.cn/qapress/78211.html" title="web前端后端怎么开发"> web前端后端怎么开发 </a> </li> </ul> </div> </aside> </div> </div> <footer class="footer"> <div class="container"> <div class="footer-col-wrap footer-with-logo-icon"> <div class="footer-col footer-col-logo"> <img src="https://cos.gitlab.cn/wp-content/uploads/2024/08/logo.webp" alt="DevOps 技术大全"> </div> <div class="footer-col footer-col-copy"> <div class="copyright"> <p>极狐GitLab:<a href="https://dl.gitlab.cn/b7pubqxh">一体化DevOps 平台</a> <a href="https://dl.gitlab.cn/l3qdwumk">敏捷项目管理</a> <a href="https://dl.gitlab.cn/ukd74mj8">源代码托管</a> <a href="https://dl.gitlab.cn/bxt0orb4">CI/CD</a> <a href="https://dl.gitlab.cn/3y7198kb">安全合规</a> <a href="https://dl.gitlab.cn/kcel9kel">AIGC</a></p> <p>ICP:<a class="mitt-text beian-icp" href="https://beian.miit.gov.cn/#/Integrated/index" target="_blank" rel="nofollow noopener">鄂ICP备2021008419号-1</a><span class="vertical-divider mitt-text"> <a class="beian-gov" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=42018502006137" target="_blank" rel="nofollow noopener"><img src="https://coderider.gitlab.cn/images/beian.png" width="20" height="20" /><span class="mitt-text">鄂公网安备42018502006137号</span></a></span></p> </div> </div> <div class="footer-col footer-col-sns"> <div class="footer-sns"> <a class="sns-wx" href="javascript:;" aria-label="icon"> <i class="wpcom-icon fa fa-wechat sns-icon"></i> <span style="background-image:url('https://cos.gitlab.cn/wp-content/uploads/2024/06/qrcode_for_gh_c43cb98908fc_430-2.jpg');"></span> </a> <a class="sns-wx" href="javascript:;" aria-label="icon"> <i class="wpcom-icon fa fa-comment sns-icon"></i> <span style="background-image:url('https://cos.gitlab.cn/wp-content/uploads/2024/06/qrcode_for_gh_c43cb98908fc_430-2.jpg');"></span> </a> <a href="https://space.bilibili.com/2099384996?spm_id_from=333.1007.0.0" aria-label="icon"> <i class="wpcom-icon fa fa-video-camera sns-icon"></i> </a> <a href="https://weibo.com/u/7877143796" aria-label="icon"> <i class="wpcom-icon fa fa-weibo sns-icon"></i> </a> </div> </div> </div> </div> </footer> <div class="action action-style-1 action-color-1 action-pos-1" style="bottom:20%;"> <a class="action-item" href="https://dl.gitlab.cn/56ck6sd6"> <i class="wpcom-icon fa fa-folder-open action-item-icon"></i> <span>GitLab下载安装</span> </a> <div class="action-item"> <i class="wpcom-icon fa fa-wechat action-item-icon"></i> <span>联系站长</span> <div class="action-item-inner action-item-type-1"> <img class="action-item-img" src="https://cos.gitlab.cn/wp-content/uploads/2024/08/xiaomage-3.webp" alt="联系站长"> </div> </div> <div class="action-item j-share"> <i class="wpcom-icon wi action-item-icon"><svg aria-hidden="true"><use xlink:href="#wi-share"></use></svg></i> <span>分享本页</span> </div> <div class="action-item gotop j-top"> <i class="wpcom-icon wi action-item-icon"><svg aria-hidden="true"><use xlink:href="#wi-arrow-up-2"></use></svg></i> <span>返回顶部</span> </div> </div> <script type="text/javascript" id="main-js-extra"> /* <![CDATA[ */ var _wpcom_js = {"webp":"","ajaxurl":"https:\/\/devops.gitlab.cn\/wp-admin\/admin-ajax.php","theme_url":"https:\/\/devops.gitlab.cn\/wp-content\/themes\/justnews","slide_speed":"5000","is_admin":"0","lang":"zh_CN","js_lang":{"share_to":"\u5206\u4eab\u5230:","copy_done":"\u590d\u5236\u6210\u529f\uff01","copy_fail":"\u6d4f\u89c8\u5668\u6682\u4e0d\u652f\u6301\u62f7\u8d1d\u529f\u80fd","confirm":"\u786e\u5b9a","qrcode":"\u4e8c\u7ef4\u7801","page_loaded":"\u5df2\u7ecf\u5230\u5e95\u4e86","no_content":"\u6682\u65e0\u5185\u5bb9","load_failed":"\u52a0\u8f7d\u5931\u8d25\uff0c\u8bf7\u7a0d\u540e\u518d\u8bd5\uff01","expand_more":"\u9605\u8bfb\u5269\u4f59 %s"},"share":"1","share_items":{"wechat":{"title":"\u5fae\u4fe1","icon":"wechat"},"mail":{"title":"\u90ae\u4ef6","icon":"mail-fill"},"weibo":{"title":"\u5fae\u535a","icon":"weibo"},"qq":{"title":"QQ\u597d\u53cb","icon":"qq"},"linkedin":{"title":"LinkedIn","icon":"linkedin"}},"lightbox":"1","post_id":"198356","user_card_height":"308","poster":{"notice":"\u8bf7\u300c\u70b9\u51fb\u4e0b\u8f7d\u300d\u6216\u300c\u957f\u6309\u4fdd\u5b58\u56fe\u7247\u300d\u540e\u5206\u4eab\u7ed9\u66f4\u591a\u597d\u53cb","generating":"\u6b63\u5728\u751f\u6210\u6d77\u62a5\u56fe\u7247...","failed":"\u6d77\u62a5\u56fe\u7247\u751f\u6210\u5931\u8d25"},"video_height":"484","fixed_sidebar":"1","dark_style":"0","font_url":"\/\/cos.gitlab.cn\/wp-content\/uploads\/wpcom\/fonts.f5a8b036905c9579.css","user_card":"1"}; /* ]]> */ </script> <script type="text/javascript" src="https://cos.gitlab.cn/wp-content/themes/justnews/js/main.js?ver=6.18.1" id="main-js"></script> <script type="text/javascript" src="https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/js/icons-2.7.19.js?ver=6.18.1" id="wpcom-icons-js"></script> <script type="text/javascript" src="https://cos.gitlab.cn/wp-content/themes/justnews/themer/assets/js/comment-reply.js?ver=6.18.1" id="comment-reply-js"></script> <script type="text/javascript" id="wwa-js-extra"> /* <![CDATA[ */ var _wwa_js = {"ajaxurl":"https:\/\/devops.gitlab.cn\/wp-admin\/admin-ajax.php","post_id":"198356","rewarded":""}; /* ]]> */ </script> <script type="text/javascript" src="https://cos.gitlab.cn/wp-content/plugins/justweapp/js/script.js?ver=3.14.2" id="wwa-js"></script> <script type="text/javascript" src="https://cos.gitlab.cn/wp-content/plugins/easy-table-of-contents/vendor/js-cookie/js.cookie.min.js?ver=2.2.1" id="ez-toc-js-cookie-js"></script> <script type="text/javascript" src="https://cos.gitlab.cn/wp-content/plugins/easy-table-of-contents/vendor/sticky-kit/jquery.sticky-kit.min.js?ver=1.9.2" id="ez-toc-jquery-sticky-kit-js"></script> <script type="text/javascript" id="ez-toc-js-js-extra"> /* <![CDATA[ */ var ezTOC = {"smooth_scroll":"","visibility_hide_by_default":"","scroll_offset":"30","fallbackIcon":"<i class=\"ez-toc-toggle-el\"><\/i>","chamomile_theme_is_on":""}; /* ]]> */ </script> <script type="text/javascript" src="https://cos.gitlab.cn/wp-content/plugins/easy-table-of-contents/assets/js/front.min.js?ver=2.0.68.1-1723614673" id="ez-toc-js-js"></script> <script type="text/javascript" id="wpcom-member-js-extra"> /* <![CDATA[ */ var _wpmx_js = {"ajaxurl":"https:\/\/devops.gitlab.cn\/wp-admin\/admin-ajax.php","plugin_url":"https:\/\/devops.gitlab.cn\/wp-content\/plugins\/wpcom-member\/","post_id":"198356","js_lang":{"login_desc":"\u60a8\u8fd8\u672a\u767b\u5f55\uff0c\u8bf7\u767b\u5f55\u540e\u518d\u8fdb\u884c\u76f8\u5173\u64cd\u4f5c\uff01","login_title":"\u8bf7\u767b\u5f55","login_btn":"\u767b\u5f55","reg_btn":"\u6ce8\u518c"},"login_url":"https:\/\/devops.gitlab.cn\/wp-login.php","register_url":"https:\/\/devops.gitlab.cn\/wp-login.php?action=register","captcha_label":"\u70b9\u51fb\u8fdb\u884c\u4eba\u673a\u9a8c\u8bc1","captcha_verified":"\u9a8c\u8bc1\u6210\u529f","errors":{"require":"\u4e0d\u80fd\u4e3a\u7a7a","email":"\u8bf7\u8f93\u5165\u6b63\u786e\u7684\u7535\u5b50\u90ae\u7bb1","pls_enter":"\u8bf7\u8f93\u5165","password":"\u5bc6\u7801\u5fc5\u987b\u4e3a6~32\u4e2a\u5b57\u7b26","passcheck":"\u4e24\u6b21\u5bc6\u7801\u8f93\u5165\u4e0d\u4e00\u81f4","phone":"\u8bf7\u8f93\u5165\u6b63\u786e\u7684\u624b\u673a\u53f7\u7801","terms":"\u8bf7\u9605\u8bfb\u5e76\u540c\u610f\u6761\u6b3e","sms_code":"\u9a8c\u8bc1\u7801\u9519\u8bef","captcha_verify":"\u8bf7\u70b9\u51fb\u6309\u94ae\u8fdb\u884c\u9a8c\u8bc1","captcha_fail":"\u4eba\u673a\u9a8c\u8bc1\u5931\u8d25\uff0c\u8bf7\u91cd\u8bd5","nonce":"\u968f\u673a\u6570\u6821\u9a8c\u5931\u8d25","req_error":"\u8bf7\u6c42\u5931\u8d25"}}; /* ]]> */ </script> <script type="text/javascript" src="https://cos.gitlab.cn/wp-content/plugins/wpcom-member/js/index.js?ver=1.5.2.1" id="wpcom-member-js"></script> <script type="text/javascript" id="QAPress-js-js-extra"> /* <![CDATA[ */ var QAPress_js = {"ajaxurl":"https:\/\/devops.gitlab.cn\/wp-admin\/admin-ajax.php","ajaxloading":"https:\/\/devops.gitlab.cn\/wp-content\/plugins\/qapress\/images\/loading.gif","max_upload_size":"2097152","compress_img_size":"1920","lang":{"delete":"\u5220\u9664","nocomment":"\u6682\u65e0\u56de\u590d","nocomment2":"\u6682\u65e0\u8bc4\u8bba","addcomment":"\u6211\u6765\u56de\u590d","submit":"\u53d1\u5e03","loading":"\u6b63\u5728\u52a0\u8f7d...","error1":"\u53c2\u6570\u9519\u8bef\uff0c\u8bf7\u91cd\u8bd5","error2":"\u8bf7\u6c42\u5931\u8d25\uff0c\u8bf7\u7a0d\u540e\u518d\u8bd5\uff01","confirm":"\u5220\u9664\u64cd\u4f5c\u65e0\u6cd5\u6062\u590d\uff0c\u5e76\u5c06\u540c\u65f6\u5220\u9664\u5f53\u524d\u56de\u590d\u7684\u8bc4\u8bba\u4fe1\u606f\uff0c\u60a8\u786e\u5b9a\u8981\u5220\u9664\u5417\uff1f","confirm2":"\u5220\u9664\u64cd\u4f5c\u65e0\u6cd5\u6062\u590d\uff0c\u60a8\u786e\u5b9a\u8981\u5220\u9664\u5417\uff1f","confirm3":"\u5220\u9664\u64cd\u4f5c\u65e0\u6cd5\u6062\u590d\uff0c\u5e76\u5c06\u540c\u65f6\u5220\u9664\u5f53\u524d\u95ee\u9898\u7684\u56de\u590d\u8bc4\u8bba\u4fe1\u606f\uff0c\u60a8\u786e\u5b9a\u8981\u5220\u9664\u5417\uff1f","deleting":"\u6b63\u5728\u5220\u9664...","success":"\u64cd\u4f5c\u6210\u529f\uff01","denied":"\u65e0\u64cd\u4f5c\u6743\u9650\uff01","error3":"\u64cd\u4f5c\u5f02\u5e38\uff0c\u8bf7\u7a0d\u540e\u518d\u8bd5\uff01","empty":"\u5185\u5bb9\u4e0d\u80fd\u4e3a\u7a7a","submitting":"\u6b63\u5728\u63d0\u4ea4...","success2":"\u63d0\u4ea4\u6210\u529f\uff01","ncomment":"0\u6761\u8bc4\u8bba","login":"\u62b1\u6b49\uff0c\u60a8\u9700\u8981\u767b\u5f55\u624d\u80fd\u8fdb\u884c\u56de\u590d","error4":"\u63d0\u4ea4\u5931\u8d25\uff0c\u8bf7\u7a0d\u540e\u518d\u8bd5\uff01","need_title":"\u8bf7\u8f93\u5165\u6807\u9898","need_cat":"\u8bf7\u9009\u62e9\u5206\u7c7b","need_content":"\u8bf7\u8f93\u5165\u5185\u5bb9","success3":"\u66f4\u65b0\u6210\u529f\uff01","success4":"\u53d1\u5e03\u6210\u529f\uff01","need_all":"\u6807\u9898\u3001\u5206\u7c7b\u548c\u5185\u5bb9\u4e0d\u80fd\u4e3a\u7a7a","length":"\u5185\u5bb9\u957f\u5ea6\u4e0d\u80fd\u5c11\u4e8e10\u4e2a\u5b57\u7b26","load_done":"\u56de\u590d\u5df2\u7ecf\u5168\u90e8\u52a0\u8f7d","load_fail":"\u52a0\u8f7d\u5931\u8d25\uff0c\u8bf7\u7a0d\u540e\u518d\u8bd5\uff01","load_more":"\u70b9\u51fb\u52a0\u8f7d\u66f4\u591a","approve":"\u786e\u5b9a\u8981\u5c06\u5f53\u524d\u95ee\u9898\u8bbe\u7f6e\u4e3a\u5ba1\u6838\u901a\u8fc7\u5417\uff1f","end":"\u5df2\u7ecf\u5230\u5e95\u4e86","upload_fail":"\u56fe\u7247\u4e0a\u4f20\u51fa\u9519\uff0c\u8bf7\u7a0d\u540e\u518d\u8bd5\uff01","file_types":"\u4ec5\u652f\u6301\u4e0a\u4f20jpg\u3001png\u3001gif\u683c\u5f0f\u7684\u56fe\u7247\u6587\u4ef6","file_size":"\u56fe\u7247\u5927\u5c0f\u4e0d\u80fd\u8d85\u8fc72M","uploading":"\u6b63\u5728\u4e0a\u4f20...","upload":"\u63d2\u5165\u56fe\u7247"}}; /* ]]> */ </script> <script type="text/javascript" src="https://cos.gitlab.cn/wp-content/plugins/qapress/js/qa.js?ver=4.9.5" id="QAPress-js-js"></script> <script type="text/javascript" src="https://cos.gitlab.cn/wp-content/themes/justnews/js/wp-embed.js?ver=6.18.1" id="wp-embed-js"></script> <script type="application/ld+json"> { "@context": "https://schema.org", "@type": "Article", "@id": "https://devops.gitlab.cn/archives/198356", "url": "https://devops.gitlab.cn/archives/198356", "headline": "web前端开发要记哪些单词", "image": "https://cos.gitlab.cn/wp-content/uploads/2024/09/30edf618-f0e1-4347-b4fd-07e1f83e44ac.webp", "description": "在web前端开发中,要记住的单词包括HTML标签、CSS属性、JavaScript函数、框架名称、库名称、API术语等。HTML标签包括div、span、a、img等、CSS属性包…", "datePublished": "2024-09-07T19:35:19+08:00", "dateModified": "2024-09-07T19:35:20+08:00", "author": {"@type":"Person","name":"极小狐","url":"https://devops.gitlab.cn/archives/author/jihu003","image":"//g.izt6.com/avatar/c1ee834fe4d1152269faf20e02fbba54?s=96&d=wavatar&r=g"} } </script> </body> </html> <!-- Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/ Page Caching using Disk: Enhanced Content Delivery Network via cos.gitlab.cn Served from: devops.gitlab.cn @ 2024-09-20 16:01:46 by W3 Total Cache -->