ParentNode.children - Web API 接口参考 编辑
ParentNode.children
是一个只读属性,返回 一个Node的子elements
,是一个动态更新的 HTMLCollection
。
语法
var children = node.children;
var elList = elementNodeReference.children;
备注
children
属性为只读属性,对象类型为 HTMLCollection
,你可以使用 elementNodeReference.children[1].nodeName
来获取某个子元素的标签名称。
例子
// parg是一个指向<p>元素的对象引用
if (parg.childElementCount)
// 检查这个<p>元素是否有子元素
// 译者注:childElementCount有兼容性问题
{
var children = parg.children;
for (var i = 0; i < children.length; i++)
{
// 通过children[i]来获取每个子元素
// 注意:List是一个live的HTMLCollection对象,在这里添加或删除parg的子元素节点,都会立即改变List的值.
};
};
规范
Specification | Status | Comment |
---|---|---|
DOM ParentNode.children | Living Standard | Initial definition. |
浏览器兼容性
We're converting our compatibility data into a machine-readable JSON format. This compatibility table still uses the old format, because we haven't yet converted the data it contains. Find out how you can help!Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari |
---|---|---|---|---|---|
Basic support | 1 | 3.5 | 9 (IE6-8 incl commend nodes) | 10 | 4 |
Feature | Android | Firefox Mobile (Gecko) | IE Mobile | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | (Yes) | (Yes) | (Yes) | (Yes) | (Yes) |
[1] Internet Explorer 6 - 8 支持该属性,但是可能会错误地包含注释 Comment
节点。
相关链接
- The
ParentNode
andChildNode
pure interfaces. - Object types implementing this pure interface:
Document
,Element
, andDocumentFragment
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论