This article will take you through HTML tags and attributes, and talk about the main structure and related tags of HTML documents. I hope it will be helpful to you!
The main structure of HTML
The basic structure of the HTML page is as follows, which includes various A variety of tags required to create web pages (such as doctype, html, head and body, etc.).
<!--这是html的注释信息--> <!DOCTYPE html> <!--这是DOCTYPE声明--> <html> <!--这是根--> <head> <!--这是头--> <meta charset = "UTF-8"> <!-- 描述性标签 --> <title>Hello</title> <!--标题栏--> </head> <body> <!--网页体--> <!--这里的内容显示到网页上--> 这是我的第一个HTML页面 </body> </html>
Top declaration<!DOCTYPE html>
, ends with </html>
, and contains the head tag in the middle And the body tag
The syntax format of HTML tagGenerally, an HTML tag consists of a start tag, attributes , content and end tag. The name of the tag is not case-sensitive, but the values of most attributes need to be case-sensitive, as shown below:
属性 ↓ <div class="foo">PHP中文网</div> ↑ ↑ ↑ 开始标签 内容 结束标签
In addition to the class attribute, the start tag can also contain other attributes. Information, such as id, title, etc., we will explain these later.
Note that although HTML tags are not case-sensitive in syntax, for the sake of standardization and professionalism, it is strongly recommended to always use lowercase when defining tags.When using a browser to open the HTML document we wrote, the browser will read the content in the document from top to bottom, and render the content in the tag in the browser based on the HTML tags and attributes. in the vessel.
An HTML document must have some basic tags so that the browser can distinguish between ordinary text and HTML documents. You can use any number of tags depending on the effect you want to achieve, but there are a few things to note:
Some HTML tags do not have a separate closing tag, but add / in the opening tag to close it. Such labels are called autistic and labelling. Please see the following example:
<img src="./logo.png" alt="C语言中文网Logo" /> <!-- 图像 --> <hr /> <!-- 分割线 --> <br /> <!-- 文本换行 --> <input type="text" placeholder="请输入内容" /> <!-- 文本输入框 -->
The closing tag does not need to surround the content, so there is no need for a separate closing tag. Only a small number of HTML tags are self-closing.
<!-- --> Represents HTML comments, used to explain HTML code. The browser will ignore the comment content, so users cannot see the comments on the web pageThe concept and use of HTML attributes
What are attributesAttributes can be provided for HTML tags Some additional information, or modifications to HTML tags. Attributes need to be added in the start tag, and the syntax format is:
attr="value"
represents the attribute name, value
represents the attribute value. Attribute values must be surrounded by double quotes ""
or single quotes ''
.
A tag can have no attributes, or it can have one or more attributes.
Examples of using HTML attributes:
<p id="user-info" class="color-red"> 欢迎 <font color="red" size="3">Tom</font> 来到PHP中文网。 <p>
There are many HTML attributes, which can be roughly divided into two categories:
Some attributes apply to most or all HTML tags, we call these attributes universal attributes;
Some attributes only apply to one or a few specific HTML tags, we call these attributes special attributes.
The tag in HTML has two special attributes, src and alt. The tag also has two special attributes, href and target, as shown in the following example:
<img src="./logo.png" alt="PHP中文网Logo" width="100" style="max-width:90%"> <a href="http://c.biancheng.net/" target="_blank">PHP中文网</a>
Description of the code:
In addition to its own attributes, HTML also allows us to customize attributes. Although these attributes can be recognized by the browser, But it will not add any special effects. We need to use CSS and JavaScript to process custom attributes and add specified styles or behaviors to HTML tags. The
data-* attribute is used to store custom data applied behind a private page. It is a new attribute in HTML5. <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:php;toolbar:false"><element data-*="somevalue"></pre><div class="contentsignin">Copy after login</div></div>
data-*
属性可以在所有的 HTML 元素中嵌入数据。
自定义的数据可以让页面拥有更好的交互体验(不需要使用 Ajax 或去服务端查询数据)。
data-*
属性由以下两部分组成:
属性名不要包含大写字母,在 data- 后必须至少有一个字符。
属性值,该属性值可以是任何字符串
注意: 自定义属性前缀 "data-" 会被客户端忽略。
利用dataset可以获取data-属性构造的对象,该方法目前只能在Chrome 、Opera等部分浏览器中实现,其他浏览器如需获取其属性值需要使用getAttribute和setAttribute来操作。
只要在标签里面以”data-”为前缀定义我们的自定义属性就可以用来进行一些数据的存放。
<div id="myDiv" data-attribute="value">在标签里设置H5新增的自定义属性</div>
这个data属性还可以应用在CSS中,前提是你的浏览器支持after伪类,以及content的attr属性(低版本的IE不支持):
<div id="myDiv" data-attribute="属性值">data属性应用于CSS中</div>
#myDiv{ position: ralative; } #myDiv:hover:after{ position: absolute; top: 0px; left: 0px; content: attr(data-attribute); color: red; }
如何获取data属性的值?
<div id="myDiv" data-attribute="value">在标签里设置H5新增的自定义属性</div>
1、使用getAttribute来获取
var myDiv = document.getElementById("myDiv"); var theValue = myDiv.getAttribute("user-defined-attribute");
2、使用Html5自定义属性对象Dataset来获取
var myDiv = document.getElementById("myDiv"); var theValue = myDiv.dataset.attribute;
注意:带连字符连接的名称在使用的时候需要命名驼峰化,即大小写组合书写,这与应用元素的style对象类似,dom.style.borderColor
。例如data属性为data-other-attribute
,则我们要获取相应的值可以使用:myp.dataset.otherAttribute
如果Html元素定义了多个自定义属性,如何获取?
<div id="myDiv" data-attribute1="value" data-attribute2="value2" data-attribute3="value3">在标签里设置多个自定义属性</div>
1、使用循环遍历
var myDiv = document.getElementById("myDiv"); var attrs = myDiv.attributes, var expense = {}, i, j; for (i = 0, j = attrs.length; i < j; i++) { if(attrs[i].name.substring(0, 5) == 'data-') { expense[attrs[i].name.substring(5)] = attrs[i].value; } }
2、使用dataset
属性
var expense = document.getElementById('myDiv').dataset;
注:dataset
并不是典型意义上的JavaScript对象,而是个DOMStringMap对象
,DOMStringMap
是HTML5一种新的含有多个名-值对的交互变量
1)、让所有的自定义的属性值塞到一个数组中
var chartInput = []; for (var item in expense) { chartInput.push(expense[item]); }
2)、删掉一个data属性
delete myDiv.dataset.attribute;
3、增加一个data属性
myDiv.dataset.attribute4 = 'value4';
dataset的兼容性处理
如果浏览器不支持dataset,有必要做一下兼容处理:
if(myDiv.dataset) { myDiv.dataset.attribute = "valueXX"; // 设置自定义属性 var theValue = myDiv.dataset.attribute; // 获取自定义属性 } else { myDiv.setAttribute("data-attribute", "valueXX"); // 设置自定义属性 var theValue = myDiv.getAttribute("data-attribute"); // 获取自定义属性 }
结语:
使用dataset
操作data
要比使用getAttribute
速度稍微慢些,虽然使用dataset
不能提高代码的性能,但是对于简洁代码,提高代码的可读性和可维护性是很有帮助的。
通用属性介绍
HTML 标签中有一些通用的属性,如 id、title、class、style 等,这些通用属性可以在大多数 HTML 标签中使用,下面来简单介绍一下它们的用法。
1) id
id 属性用来赋予某个标签唯一的名称(标识符),当我们使用 CSS 或者 JavaScript 来操作这个标签时,就可以通过 id 属性来找到这个标签。
为标签定义 id 属性可以给我们提供很多便利,比如:
如果标签中带有 id 属性作为唯一标识符,通过 id 属性可以很方便的定位到该标签;
如果 HTML 文档中包含多个同名的标签,利用 id 属性的唯一性,可以很方便的区分它们。
注意:在一个 HTML 文档中 id 属性的值必须是唯一的。
示例代码如下所示:
<input type="text" id="username" /> <div id="content">PHP中文网</div> <p id="url">https://www.php.cn/</p>
2) class
与 id 属性类似,class 属性也可以为标签定义名称(标识符),不同的是 class 属性在整个 HTML 文档中不必是唯一的,我们可以为多个标签定义相同的 class 属性值。另外,还可以为一个 HTML 标签定义多个 class 属性值,如下所示:
<div class="className1 className2 className3"></div> <p>PHP中文网</p> <div>https://www.php.cn/</div>
当使用 CSS 或者 JavaScript 来操作 HTML 标签时,同样可以使用 class 属性来找到对应的 HTML 标签。由于 class 属性不是唯一的,所以通过 CSS 或 JavaScript 对 HTML 标签的操作会应用于所有具有同名 class 属性的标签中。
3) title
title 属性用来对标签内容进行描述说明,当鼠标移动到该标签上方时会显示出 title 属性的值,如下例所示:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>演示文档</title> </head> <body> <a href="https://www.php.cn/" title="HTML教程">HTML教程</a> </body> </html>
运行结果如下图所示:
将鼠标在链接处悬停片刻才能看到提示框。
4) style
使用 style 属性我们可以在 HTML 标签内部为标签定义 CSS 样式,例如设置文本的颜色、字体等,如下例所示:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>演示文档</title> </head> <body> <p style="color:red;">https://www.php.cn/</p> <img src="./logo.png" style="max-width:90%" alt="PHP中文网LOGO"> <div style="padding:10px;border:2px solid #999;text-align:center;">PHP中文网</div> </body> </html>
运行结果如下图所示:
标签中常用的标签
1、
2、
3、 标签
标签经常用于引用外部 CSS 样式表, 标签中包含两个主要的属性,分别是 rel 和 href。rel 属性用来指示引用文件的类型,href 属性用来设置外部文件的路径。示例代码如下:
<link rel="stylesheet" href="common.css">
4、