管理杂谈OA答疑ERP答疑教程搜索

您必须了解的 21 个 HTML 技巧


在这篇文章中,我们将分享 21 个带有代码片段的 HTML 技巧,可以提高您的编码技能。

现在,让我们直接开始吧。

01、创建联系链接

使用 HTML 创建可点击的电子邮件、电话和短信链接:

<!-- Email link -->a href="mailto:name@example.com" Send Email </a
<!-- Phone call link -->a href="tel:+1234567890" Call Us </a
<!-- SMS link -->a href="sms:+1234567890" Send SMS </a

02、创建可折叠内容

当您想要在网页上包含可折叠内容时,可以使用 <details> 和 <summary> 标记。

<details> 标签创建隐藏内容的容器,而 <summary> 标签提供可单击的标签来切换该内容的可见性。

details  summaryClick to expand</summary  pThis content can be expanded or collapsed.</p</details

03、利用语义元素

为您的网站选择语义元素而不是非语义元素。它们使您的代码变得有意义,并改善结构、可访问性和 SEO。

上图,左边为非语义结构,右边为语义元素结构

04、对表单元素进行分组

使用 <fieldset> 标记对表单中的相关元素进行分组,并使用 <legend> 标记和 <fieldset> 来定义 <fieldset> 标记的标题。

这对于创建更高效、更易于访问的表单非常有用。

form   fieldset      legendPersonal details</legend      label for="firstname"First name:</label      input type="text" id="firstname" name="firstname" />      label for="email"Email:</label      input type="email" id="email" name="email" />      label for="contact"Contact:</label      input type="text" id="contact" name="contact" />      input type="button" value="Submit" />   </fieldset</form

05、增强下拉菜单

您可以使用 <optgroup> 标签对 <select> HTML 标签中的相关选项进行分组。

当您使用大型下拉菜单或长选项列表时可以使用此功能。

select   optgroup label="Fruits"      optionApple</option      optionBanana</option      optionMango</option   </optgroup   optgroup label="Vegetables"      optionTomato</option      optionBroccoli</option      optionCarrot</option   </optgroup</select

06、改进视频演示

poster属性可以与 <video> 元素一起使用来显示图像,直到用户播放视频。

<video controls poster="image.png" width="500"  <source src="video.mp4" type="video/mp4 /></video>

07、支持多项选择

您可以将 multiple 属性与 <input> 和 <select> 元素一起使用,以允许用户一次选择/输入多个值。

input type="file" multiple />select multiple    option value="java"Java</option    option value="javascript"JavaScript</option    option value="typescript"TypeScript</option    option value="rust"Rust</option</select

08、将文本显示为下标和上标

<sub> 和 <sup> 元素可用于分别将文本显示为下标和上标。

09、创建下载链接

您可以使用带有 <a> 元素的 download 属性来指定当用户单击链接时,应下载而不是导航到链接的资源。

a href="document.pdf" download="document.pdf" Download PDF </a

10、定义相对链接的基本 URL

您可以使用 <base> 标签来定义网页中所有相对 URL 的基本 URL。

当您想要为网页上的所有相对 URL 创建共享起点时,这会很方便,从而更轻松地导航和加载资源。

head   base href="https://shefali.dev" target="_blank" /></headbody   a href="/blog"Blogs</a   a href="/get-in-touch"Contact</a</body

11、控制图像加载

<img> 元素的loading 属性可用于控制浏览器加载图像的方式。它具有三个值:“eager”、“lazy”和“auto”。

img src="picture.jpg" loading="lazy"

12、管理翻译功能

您可以使用translate 属性来指定元素的内容是否应由浏览器的翻译功能进行翻译。

p translate="no"  This text should not be translated.</p

13、设置最大输入长度

通过使用 maxlength 属性,您可以设置用户在输入字段中输入的最大字符数。

<input type="text" maxlength="4"

14、设置最小输入长度

通过使用 minlength 属性,您可以设置用户在输入字段中输入的最小字符数。

<input type="text" minlength="3"

15、启用内容编辑

使用 contenteditable 属性指定元素的内容是否可编辑。

它允许用户修改元素内的内容。

div contenteditable="true"   You can edit this content.</div

16、控制拼写检查

您可以将拼写检查属性与 <input> 元素、内容可编辑元素和 <textarea> 元素结合使用,以启用或禁用浏览器的拼写检查。

<input type="text" spellcheck="true"/>

17、确保无障碍

alt 属性指定图像无法显示时的替代文本。

始终包含图像的描述性 alt 属性,以提高可访问性和 SEO。

img src="picture.jpg" alt="Description for the image"

18、定义链接的目标行为

您可以使用目标属性来指定单击链接资源时将显示的位置。

<!-- Opens in the same frame -->a href="https://shefali.dev" target="_self"Open</a
<!-- Opens in a new window or tab -->a href="https://shefali.dev" target="_blank"Open</a
<!-- Opens in the parent frame -->a href="https://shefali.dev" target="_parent"Open</a
<!-- Opens in the full body of the window -->a href="https://shefali.dev" target="_top"Open</a
<!-- Opens in the named frame -->a href="https://shefali.dev" target="framename"Open</a

19、提供附加信息

title 属性可用于在用户将鼠标悬停在元素上时提供有关该元素的附加信息。

p title="World Health Organization"WHO</p

20、接受特定文件类型

可以使用accept属性指定服务器接受的文件类型(仅适用于文件类型)。 这与 <input> 元素一起使用。

<input type="file" accept="image/png, image/jpeg" />

21、优化视频加载

您可以通过使用 <video> 元素的 preload 属性来加快视频文件的加载速度,从而实现更流畅的播放。

video src="video.mp4" preload="auto"   Your browser does not support the video tag.</video


更多精彩文章浏览...
点击右上角图标分享到朋友圈
官方网站:http://www.clicksun.cn
咨询热线:400-186-1886
服务邮箱:service@clicksun.cn