Element.getElementsByTagName() - Web APIs 编辑
The Element.getElementsByTagName()
method returns a live HTMLCollection
of elements with the given tag name. All descendants of the specified element are searched, but not the element itself. The returned list is live, which means it updates itself with the DOM tree automatically. Therefore, there is no need to call Element.getElementsByTagName()
with the same element and arguments repeatedly if the DOM changes in between calls.
When called on an HTML element in an HTML document, getElementsByTagName
lower-cases the argument before searching for it. This is undesirable when trying to match camel-cased SVG elements (such as <linearGradient>
) in an HTML document. Instead, use Element.getElementsByTagNameNS()
, which preserves the capitalization of the tag name.
Element.getElementsByTagName
is similar to Document.getElementsByTagName()
, except that it only searches for elements that are descendants of the specified element.
Syntax
elements = element.getElementsByTagName(tagName)
elements
is a liveHTMLCollection
of elements with a matching tag name, in the order they appear. If no elements are found, theHTMLCollection
is empty.element
is the element from where the search starts. Only the element's descendants are included, not the element itself.tagName
is the qualified name to look for. The special string"*"
represents all elements. For compatibility with XHTML, lower-case should be used.
Example
// Check the status of each data cell in a table
const table = document.getElementById('forecast-table');
const cells = table.getElementsByTagName('td');
for (let cell of cells) {
let status = cell.getAttribute('data-status');
if (status === 'open') {
// Grab the data
}
}
Specifications
Specification | Status | Comment |
---|---|---|
DOM The definition of 'Element.getElementsByTagName()' in that specification. | Living Standard | Changed the return value from NodeList to HTMLCollection |
Document Object Model (DOM) Level 3 Core Specification The definition of 'Element.getElementsByTagName()' in that specification. | Obsolete | No change from Document Object Model (DOM) Level 2 Core Specification |
Document Object Model (DOM) Level 2 Core Specification The definition of 'Element.getElementsByTagName()' in that specification. | Obsolete | No change from Document Object Model (DOM) Level 1 Specification |
Document Object Model (DOM) Level 1 Specification The definition of 'Element.getElementsByTagName()' in that specification. | Obsolete | Initial definition |
Browser compatibility
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论