元素

一个 元素 是网页的一部分。在 XMLHTML 中,元素可能包含数据项、文本块、图像或空内容。典型的元素包括带有一些 属性 的开始标签,包含的文本内容和结束标签。

Example: in <p class="nice">Hello world!</p>, '<p class="nice">' is an opening tag, 'class="nice"' is an attribute and its value, 'Hello world!' is enclosed text content, and '</p>' is a closing tag.

元素和 标签 是同一个东西。标签在源代码中开始或结束元素,而元素是 DOM 的一部分,DOM 是在 浏览器 中显示页面的文档模型。

另请参阅