欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

JavaScript之HTMLCollection接口代码_javascript技巧

程序员文章站 2022-03-10 08:30:30
...
复制代码 代码如下:

interface HTMLCollection
{
//包含结点的个数
readonly attribute unsigned long length;
//根据指定的索引index,返回相应的结点
//HTMLCollection中的结点呈树形结构,索引值index是结点深度优先方式排序的序号
Node item (in unsigned long index);
//根据结点的name或者id的属性返回相应的结点
Node namedItem (in DOMString name);
}