Element.tagName - Web APIs 编辑
The tagName
read-only property of the Element
interface returns the tag name of the element on which it's called. For example, if the element is an <img>
, its tagName
property is "IMG"
(for HTML documents; it may be cased differently for XML/XHTML documents).
Syntax
elementName = Element.tagName;
Value
A string indicating the element's tag name. This string's capitalization depends on the document type:
- For DOM trees which represent HTML documents, the returned tag name is always in the canonical upper-case form. For example,
tagName
called on a<div>
element returns"DIV"
. - The tag names of elements in an XML DOM tree are returned in the same case in which they're written in the original XML file. If an XML document includes a tag
"<SomeTag>"
, then thetagName
property's value is"SomeTag"
.
For Element
objects, the value of tagName
is the same as the value of the nodeName
property the element object inherits from Node
.
Example
HTML
<span id="born">When I was born...</span>
JavaScript
var span = document.getElementById("born");
console.log(span.tagName);
In XHTML (or any other XML format), the original case will be maintained, so "span"
would be output in case the original tag name was created lowercase. In HTML, "SPAN"
would be output instead regardless of the case used while creating the original document.
Specifications
Specification | Status | Comment |
---|---|---|
DOM The definition of 'Element: tagName' in that specification. | Living Standard |
Browser compatibility
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论