Element.firstElementChild - Web API 接口参考 编辑

ParentNode.firstElementChild 只读属性,返回对象的第一个子 元素, 如果没有子元素,则为null。

他的属性最初是在element遍历纯接口中定义的。由于这个接口包含两组不同的属性,一个针对具有子元素的Node,一个针对子元素的属性,因此它们被移动到两个单独的纯接口中,ParentNodeChildNode。在本例中,firstElementChild移动到ParentNode。这是一个相当技术性的更改,不应该影响兼容性。

语法

var element = node.firstElementChild;

例子

<ul id="foo">
  <li>First  (1)</li>
  <li>Second (2)</li>
  <li>Third  (3)</li>
</ul>

<script>
var foo = document.getElementById('foo');
// yields: First  (1)
console.log(foo.firstElementChild.textContent);
</script>

适用于 IE8、IE9 和 Safari 的 Polyfill

// Overwrites native 'firstElementChild' prototype.
// Adds Document & DocumentFragment support for IE9 & Safari.
// Returns array instead of HTMLCollection.
;(function(constructor) {
    if (constructor &&
        constructor.prototype &&
        constructor.prototype.firstElementChild == null) {
        Object.defineProperty(constructor.prototype, 'firstElementChild', {
            get: function() {
                var node, nodes = this.childNodes, i = 0;
                while (node = nodes[i++]) {
                    if (node.nodeType === 1) {
                        return node;
                    }
                }
                return null;
            }
        });
    }
})(window.Node || window.Element);

规范

SpecificationStatusComment
DOM
ParentNode.firstElementChild
Living StandardSplitted the ElementTraversalinterface in ChildNode and ParentNode. This method is now defined on the latter.
The Document and DocumentFragment implemented the new interfaces.
Element Traversal Specification
ElementTraversal.firstElementChild
ObsoleteAdded its initial definition to theElementTraversal pure interface and use it on Element.

浏览器兼容性

BCD tables only load in the browser

The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.

参见

Ed

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据

词条统计

浏览:117 次

字数:4900

最后编辑:8年前

编辑次数:0 次

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文