interface HTMLCollection
{
readonly attribute unsigned long length;
Node item(in unsigned long index);
Node namedItem(in DOMString name);
}
对于 HTMLCollection集合对象 必须要说一说的是 namedItem方法. 看看规范的解释.
原文:
namedItem method This method retrieves a Node using a name. With [HTML 4.01] documents, it first searches for a Node with a matching id attribute. If it doesn't find one, it then searches for a Node with a matching name attribute, but only on those elements that are allowed a name attribute. With [XHTML 1.0] documents, this method only searches for Nodes with a matching id attribute. This method is case insensitive in HTML documents and case sensitive in XHTML documents. 翻译:
namedItem 方法:
此方法获通过 "name"属性来获取节点.
在HTML4.01文档中,它首先搜索的是节点的ID属性的值. 如果没找到匹配节点,才去搜索name 属性与之匹配的节点. 即HTML4.01 DTD下,浏览器们应该优先通过ID来获取节点.其次才是name.
在XHTML 1.0文档中,则仅搜索ID与之匹配的节点.
对于节点(id or name)属性的值,此方法在HTML文档中忽略大小写区别,而在XHTML文档中.则要区别大小写.
|
interface NodeList {
Node item(in unsigned long index);
readonly attribute unsigned long length;
};
微软MSDN上查到的 NodeList实现 ,虽然这些资料告诉我们 NodeList继承了 Microsoft.SpeechServer.Dom.Collections.Collection Class . 但是事实却并不如此. 事实上,ie浏览器的NodeList不具备 ICollection接口定义的 namedItem 和 tags 两个方法. 实现了他们的 只有HTMLCollection类型.
此文档是 Speech Server 2007 用的,所以应该仅供参考.只能说明IE浏览器中的NodeList 还是遵守标准的.
<strong><span><span style="COLOR: #a8a8a8">public sealed class NodeList : Collection, INodeList, IEnumerable, IExpando, IReflect</span></span></strong> <span style="COLOR: #a8a8a8"><strong><span><span><strong><span style="COLOR: #a8a8a8">NodeList的继承链:</span></strong></span></span></strong></span>
System.Object
Microsoft.SpeechServer.Dom.Shim
Microsoft.SpeechServer.Dom.DynamicShim
Microsoft.SpeechServer.Dom.Collections.Collection
Microsoft.SpeechServer.Dom.Collections.NodeList
Collection 实现的ICollection接口定义的属性和方法表
public properties : item(msdn上说item是重载,我表示诧异...),length
public methods : item,namedItem,tags
|
Element querySelector(in DOMString selectors);
NodeList querySelectorAll(in DOMString selectors);
}
The NodeList object returned by the querySelectorAll() method must be static, not live ([DOM-LEVEL-3-CORE], section 1.1.1)
Members Table
The following table lists the members exposed by the StaticNodeList object.
Attributes/PropertiesMethods
Method Description item Retrieves an object from a childNodes or StaticNodeList collection.
Remarks
The collection will be empty if the querySelectorAll method returned no matches.
If the element tree is changed relative to the one or more original selectors used to generate the StaticNodeList collection, the collection (being static) will not be updated when the element tree changes.
限定方
|
方法\浏览器 | IE8 | IE9 beta7930.16406 | FireFox4.0 beta7 | Chrome10.0 Dev | Safari5.02 | Opear11 |
W3C DOM2 | getElementsByTagName |
HTMLCollection |
HTMLCollection
|
HTMLCollection
|
NodeList
|
NodeList
|
NodeList
|
WHATWG HTML5
|
getElementsByClassName |
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
NodeList
|
NodeList
|
NodeList
|
W3C DOM1
|
getElementsByName |
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
NodeList
|
NodeList
|
NodeList
|
W3c Selectors API 1
|
querySelectorAll | StaticNodeList |
StaticNodeList
|
NodeList(Static)(注0) |
NodeList(Static)
|
NodeList(Static)
|
NodeList(Static)
|
W3C DOM1
|
childNodes | NodeList |
NodeList
|
NodeList
|
NodeList
|
NodeList
|
NodeList
|
MS
|
children
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
w3c DOM1 |
document.links
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
w3c DOM1
|
document.images |
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
w3c DOM1
|
document.anchors |
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
w3c DOM1
|
document.forms |
HTMLCollection |
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
w3c DOM1 | document.applets |
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
w3c DOM1 | formElement.elements |
HTMLFormElement |
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
w3c DOM1 | selectElement.options |
HTMLSelectElement
|
HTMLSelectElement
|
HTMLOptionsCollection
|
HTMLOptionsCollection
|
HTMLOptionsCollection
|
HTMLOptionsCollection
|
w3c DOM1 | tableElement.rows |
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
w3c DOM1 | rowElement.cells |
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
HTMLCollection
|
MS | document.all |
HTMLCollection
|
HTMLCollection
|
(S)-(注4)
(Q)object HTML document.all class
|
HTMLAllCollection(注1)
|
HTMLAllCollection(注2)
|
HTMLCollection(注3)
|
注4:Freifox在非标准模式,才支持document.all 且是一个很奇怪的东西.其构造器是Object. 这东西从FireFox 0.8时代貌似就有了.一直到现在的4.0 beta8 ...

JavaScript字符串替换方法详解及常见问题解答 本文将探讨两种在JavaScript中替换字符串字符的方法:在JavaScript代码内部替换和在网页HTML内部替换。 在JavaScript代码内部替换字符串 最直接的方法是使用replace()方法: str = str.replace("find","replace"); 该方法仅替换第一个匹配项。要替换所有匹配项,需使用正则表达式并添加全局标志g: str = str.replace(/fi

利用轻松的网页布局:8个基本插件 jQuery大大简化了网页布局。 本文重点介绍了简化该过程的八个功能强大的JQuery插件,对于手动网站创建特别有用

因此,在这里,您准备好了解所有称为Ajax的东西。但是,到底是什么? AJAX一词是指用于创建动态,交互式Web内容的一系列宽松的技术。 Ajax一词,最初由Jesse J创造

本教程演示了创建通过Ajax加载的动态页面框,从而可以即时刷新,而无需全页重新加载。 它利用jQuery和JavaScript。将其视为自定义的Facebook式内容框加载程序。 关键概念: Ajax和JQuery

10款趣味横生的jQuery游戏插件,让您的网站更具吸引力,提升用户粘性!虽然Flash仍然是开发休闲网页游戏的最佳软件,但jQuery也能创造出令人惊喜的效果,虽然无法与纯动作Flash游戏媲美,但在某些情况下,您也能在浏览器中获得意想不到的乐趣。 jQuery井字棋游戏 游戏编程的“Hello world”,现在有了jQuery版本。 源码 jQuery疯狂填词游戏 这是一个填空游戏,由于不知道单词的上下文,可能会产生一些古怪的结果。 源码 jQuery扫雷游戏

此JavaScript库利用窗口。名称属性可以管理会话数据,而无需依赖cookie。 它为浏览器中存储和检索会话变量提供了强大的解决方案。 库提供了三种核心方法:会话

本教程演示了如何使用jQuery创建迷人的视差背景效果。 我们将构建一个带有分层图像的标题横幅,从而创造出令人惊叹的视觉深度。 更新的插件可与JQuery 1.6.4及更高版本一起使用。 下载


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

EditPlus 中文破解版
体积小,语法高亮,不支持代码提示功能

SublimeText3 英文版
推荐:为Win版本,支持代码提示!

MinGW - 适用于 Windows 的极简 GNU
这个项目正在迁移到osdn.net/projects/mingw的过程中,你可以继续在那里关注我们。MinGW:GNU编译器集合(GCC)的本地Windows移植版本,可自由分发的导入库和用于构建本地Windows应用程序的头文件;包括对MSVC运行时的扩展,以支持C99功能。MinGW的所有软件都可以在64位Windows平台上运行。

SublimeText3 Linux新版
SublimeText3 Linux最新版

适用于 Eclipse 的 SAP NetWeaver 服务器适配器
将Eclipse与SAP NetWeaver应用服务器集成。