What are html global attributes?

青灯夜游
Release: 2022-07-29 16:41:21
Original
5247 people have browsed it

In HTML, global attributes refer to attributes that can be used to configure the common behavior of all elements and can be used on any element. Commonly used global attributes include: class, hidden, id, lang, style, title, dir, contenteditable, etc.

What are html global attributes?

The operating environment of this tutorial: Windows 7 system, HTML5 version, Dell G3 computer.

Local attributes: Some elements can specify their own attributes, which are called local attributes. For example, the link element has six local attributes: href, rel, hreflang, media, type, and sizes.

Global attributes: Can be used to configure behaviors common to all elements. This attribute is called a global attribute and can be used on any element.

1. Accesskey attribute

Use the accesskey attribute to set one or several shortcut keys for selecting elements on the page.

<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <meta >
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>HTML全局属性测试</title>
</head>
<body>
  <form action="">
      <p>
          Name: <input type="text" >                
      </p>
      <p>
          Password: <input type="password" >                
      </p>
      <p>
          Name: <input type="submit" >                
      </p>
  </form>
</body>
</html>
Copy after login

In the above example, the accesskey attribute is added to the three input elements, so that they can be used under Mac <span class="typ">Control<span class="pln"> <span class="pun"> <span class="pln"> <span class="typ">Alt<span class="pun">(<span class="typ">Option<span class="pun">)<span class="pln"> <span class="pun"> <span class="pln"> n</span></span></span></span></span></span></span></span></span></span></span>##The shortcut key accesses the Name input box. The key combinations used to trigger the accesskey mechanism vary by platform, as follows:

Browser/PlatformWindowLinuxMacFirefoxAlt Shift keyAlt Shift keyControl Alt keyInternet ExplorerAlt keyN/AN/AGoogle ChromeAlt keyAlt keyControl Alt keySafariAlt key N/AControl Alt keyOperaSame as Google ChromeSame as Google ChromeSame as Google Chrome

关于 accesskey 这个全局属性的详解,可以看一下 HTML accesskey 属性与 web 自定义键盘快捷访问

2、class 属性

class 属性用来将元素归类,这个就无需多言了。

3、contenteditable 属性

contenteditable 是 HTML5 中新增加的属性,,其用途是让用户能够修改页面上的内容。

<body>
   <!-- contenteditable属性应用 -->
   <p contenteditable="true">设置为 true 是可编辑的</p>
  </body>
Copy after login

如上例,p 元素的 contenteditable 属性值设置为 true 时,用户可以单击文字编辑内容。设置为 false 时禁止编辑。

4、dir 属性

dir 属性用来规定元素中文字的方向。有效值有两个:ltr(从左到右)、rtl(从右到左)。

<!-- dir属性应用 -->
<p dir="ltr">从左到右</p>
<p dir="rtl">从右到左</p>
Copy after login

5、draggable 属性

draggable 属性是 HTML5 支持拖放操作的方式之一,用来表示元素是否可被拖放。

6、dropzone 属性

dropzone 属性是 HTML5 支持拖放操作的方式之一,与 draggable 属性搭配使用。

7、id 属性

id 属性用来给元素分配一个唯一的标识符。这个也无需多言。需要说明的一点是,id 属性还可以用来导航到文档中的特定位置。

8、hidden 属性

hidden 是个布尔属性,表示相关元素当前不需要关注,浏览器对它的处理方式是隐藏相关元素(隐隐想起来控制一个元素的展示隐藏的时候,会自定义一个 hidden 类,然后在里面写隐藏样式),具体也可以看一下这篇介绍 HTML5 的 hidden 属性

<!-- hidden属性应用 -->
<div hidden>这个元素将会被隐藏</div>
Copy after login

9、lang 属性

lang 属性用于说明元素内容使用的语言。lang 属性必须使用有效的 ISO 语音代码,使用这个属性的目的在于,让浏览器调整其表达元素内容的方式,比如在使用了文字朗读器的情况下正确发音。

<!-- lang属性应用 -->
<p>Hello - how are you?</p>
Copy after login

10、spellcheck 属性

spellcheck 属性用来表明浏览器是否应该对元素的内容进行拼写检查,这个属性只有用在用户可以编辑的元素上时才有意义。 spellcheck 属性可以接受的值有两个:true 和 false。至于拼写检查的实现方式则因浏览器而异。

<!-- spellcheck属性应用 -->
 <textarea >This is some lalalala text</textarea>
Copy after login

11、style 属性

style 属性用来直接在元素身上定义 CSS 样式,这个也不做过多描述了。

12、tabindex 属性

HTML 页面的键盘焦点可以通过按 Tab 键在各元素之间切换。用 tabindex 属性可以改变默认的转移顺序。

<!-- tabindex属性应用 -->
 <form action="">
    <label>Name: <input type="text" ></label>
    <label>City: <input type="text" ></label>
    <label>Country: <input type="text" ></label>
    <input type="submit" value="" tabindex="3">
 </form>
Copy after login

上面的代码实现效果是:在按 Tab 键的过程中,tabindex 为 1 的 Country 输入框第一个被选中,接着焦点会跳到 Name 输入框,最后是 submit 提交。tabindex 设置为 - 1 的元素不会在用户按下 Tab 键后被选中。

13、title 属性

title 属性提供了元素的额外信息,浏览器通常用这些东西显示工具条提示,这个在一些展示不全的文本标题也经常使用。

<!-- title属性应用 -->
<a href="https://qiqihaobenben.github.io/" title="我的个人网站">qiqihaobenben.github.io</a>
Copy after login

14、contextmenu 属性

自定义鼠标右键弹出菜单内容

15、data-* 属性

为元素增加自定义属性

16、translate 属性

元素和子孙节点内容是否需要本地化

推荐教程:《html视频教程

The above is the detailed content of What are html global attributes?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template