javascript常用方法、属性集合及NodeList 和 HTMLCollection 的浏览器差异


Posted in Javascript onDecember 25, 2010
在您开始本文的阅读前,我强烈建议您可以先读一读此篇:http://w3help.org/zh-cn/causes/SD9004.

     
     HTMLCollection 接口定义

 

interface HTMLCollection
{
      readonly attribute unsigned long   length;
      Node               item(in unsigned long index);
      Node               namedItem(in DOMString name);
}

 


对于 HTMLCollection集合对象 必须要说一说的是 namedItem方法. 看看规范的解释.
原文:namedItem methodThis 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文档中.则要区别大小写.

 

上文中粗体部分很重要,没有这个作为指导的话.后面遇到的一些问题就很不好确定孰是孰非.因为众多浏览器的实现并不一样.

 


        
  NodeList 接口定义

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 还是遵守标准的. public sealed class NodeList : Collection, INodeList, IEnumerable, IExpando, IReflect NodeList的继承链: 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

ps:
1. 目前只有Opera的NodeList Class 是派生自 Collection Class 或HtmlCollection Class 的.所以此浏览器中NodeList集合对象也会具备 HTMLCollection接口实现的所有属性和方法.
2. MS 的ICollection 接口 定义了一个tags方法 用来根据tagName获取元素集合.其类型为 HTMLCollection 类型

 




 神秘的 StaticNodeList  

interface NodeSelector {
    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)


由于w3.org的[DOM-LEVEL-3-CORE]文档中,并没有StaticNodeList接口的定义. 只好在后面找出一份微软的代替之.


微软的一些相关:
基于 NodeList Class 是个密封类. 我们可以初步了解StaticNodeList 并不像最初我认为的那样,可能派生自NodeList. 而且规范说的明白. 这个集合是静态的.就是说它不会随着DOM树的变化而变化. 这种选择性去除基类能力的做法不符合继承的思想.所以只可能是另外的一个东东了.

Members Table

The following table lists the members exposed by the StaticNodeList object.

Attributes/Properties
Property Description
length Gets the number of characters in a TextNode object.
Methods
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.





测试:IE,     Firefox3.6,     Chrome10 Dev,     Opera 11,     Safari 5.02
测试主要针对nodeList 和 HTMLCollection, 并不涉及 xpath 以及namedNodeMap.等
关于namedNodeMap https://developer.mozilla.org/En/DOM/NamedNodeMap , http://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-1780488922
结果:

限定方 方法\浏览器 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)


注0: 非IE 且支持 querySelectorAll 的浏览器返回的集合对象应该也叫StaticNodeList .但不知是否因规范中定义querySelectorAll方法返回类型为NodeList类型. 
       但规范中有注解这个NodeList 必须为静态的对象.即不随着DOM Tree的改变而改变, 其自身的改变也不应该影响到DOM Tree.那么他就不该再叫NodeList类型.


注1: Chrome中 直接打印document.all,会得到undefined . 但是并不影响我们对document.all的访问和使用.
       Chrome3-浏览器中 仅仅是HTMLCollection,从Chrome4开始才是HTMLAllCollection


注2: Safari4中并不叫HTMLAllCollection 而只是 HTMLCollection


注3:Opera、Safari等浏览器中.也可以直接访问document.all , 但是 typeof document.all =='undefined'  以及 if(document.all){//此处逻辑永远不会被执行.}.但可以直接打印document.all



注4:Freifox在非标准模式,才支持document.all 且是一个很奇怪的东西.其构造器是Object. 这东西从FireFox 0.8时代貌似就有了.一直到现在的4.0 beta8 ...


ps:
.ie6,7可以参考ie8,测试方式是 使用namedItem 或 tags 两个方法是否被实现来检查其是否为nodeList 还是 HTMLCollection.

 

.不要奇怪为什么列表中没有window.frames,因为实际上window.frames在ie6,ie7,ie8(ie9已修改,所以同其他浏览器一样.)以外的浏览器中,就是window对象,即window === window.frames. ie6,7,8中大概window.frames是window对象的一个浅表复制. 所以实际上,要获取一个iframe,我们只需要 window[index||name]即可.




总结:
虽然看起来NodeList 和HTMLCollection 的差别仅在于 一个 namedItem 方法. 但这个方法本身也仅仅是在当前集合中 找到name 或 id符合的元素第一个元素出来
为了方便记忆,方便查找.我们应该尽量统一使用索引器代替 item以及namedItem方法. 但应注意 IE,Firefox对NodeList没有实现name索引器.Opera 的nodeList索引器 则可能返回一个NodeList集合(childNodes接口).  考虑到大多数问题出在childNodes接口上.我们紧紧需要铭记.对childNodes接口避免使用索引器即可. 对于querySelectorAll接口,甚至Opera也不支持其返回的NodeList(Static)的name索引器了.那么querySelectorAll的选择器一次性找到符合节点即可. 或者避免使用name索引器,改用 Number Index 索引器来筛选.

关于['name']索引方式应该注意的几个问题是 :
1. IE 又返回一个HTMLCollection集合(IE大概认为如果查找的元素集合中有表单元素,且name可能会出现重复.那么返回值就应该是一个集合.而不是单一元素.),且非表单元素name会被无视.
2.FireFox 和 opera 浏览器会 无视document.compatMode ,无视id或name,无视是否为表单元素,仅找出第一个符合 id或name任意一个为索引或namedItem()参数的元素.
3.webkit浏览器则无视document.compatMode,无视id,无视name,无视是否为表单元素,而仅仅找出id符合的元素.
Javascript 相关文章推荐
JavaScript:Div层拖动效果实例代码
Aug 06 Javascript
javascript 弹出的窗口返回值给父窗口具体实现
Nov 23 Javascript
Javascript检查图片大小不要让大图片撑破页面
Nov 04 Javascript
JavaScript制作简易的微信打飞机
Mar 31 Javascript
JQueryEasyUI之DataGrid数据显示
Nov 23 Javascript
原生js和css实现图片轮播效果
Feb 07 Javascript
JS简单获取日期相差天数的方法
Apr 24 Javascript
基于substring()和substr()的使用以及区别(实例讲解)
Dec 28 Javascript
vue检测对象和数组的变化分析
Jun 30 Javascript
浅谈目前可以使用ES10的5个新特性
Jun 25 Javascript
KnockoutJS数组比较算法实例详解
Nov 25 Javascript
微信小程序之高德地图多点路线规划过程示例详解
Jan 18 Javascript
javascript与webservice的通信实现代码
Dec 25 #Javascript
基于node.js的快速开发透明代理
Dec 25 #Javascript
用方法封装javascript的new操作符(一)
Dec 25 #Javascript
一些javascript一些题目的解析
Dec 25 #Javascript
javascript字符串拼接的效率问题
Dec 25 #Javascript
原生javascript获取元素样式属性值的方法
Dec 25 #Javascript
javascript中使用replaceAll()函数实现字符替换的方法
Dec 25 #Javascript
You might like
PHP中error_reporting()函数的用法(修改PHP屏蔽错误)
2011/07/01 PHP
php实现自动获取生成文章主题关键词功能的深入分析
2013/06/03 PHP
PHP获取时间排除周六、周日的两个方法
2014/06/30 PHP
PHP序列化操作方法分析
2016/09/28 PHP
浅谈PHP的反射API
2017/02/26 PHP
PHP下用Swoole实现Actor并发模型的方法
2019/06/12 PHP
对象特征检测法判断浏览器对javascript对象的支持
2009/07/25 Javascript
jquery last-child 列表最后一项的样式
2010/01/22 Javascript
JavaScript 学习笔记(十四) 正则表达式
2010/01/22 Javascript
jquery 绑定回车动作扑捉回车键触发的事件
2014/03/26 Javascript
jQuery如何取id有.的值一般的方法是取不到的
2014/04/18 Javascript
浅析Node.js查找字符串功能
2014/09/03 Javascript
nodejs中使用多线程编程的方法实例
2015/03/24 NodeJs
js实现无限级树形导航列表效果代码
2015/09/23 Javascript
js实现图片无缝滚动特效
2020/03/19 Javascript
深入理解JavaScript中的浮点数
2016/05/18 Javascript
基于JavaScript FileReader上传图片显示本地链接
2016/05/27 Javascript
JS实现刷新父页面不弹出提示框的方法
2016/06/22 Javascript
详解jQuery中关于Ajax的几个常用的函数
2017/07/17 jQuery
vuejs使用$emit和$on进行组件之间的传值的示例
2017/10/04 Javascript
安装Node.js并启动本地服务的操作教程
2018/05/12 Javascript
JS数组方法concat()用法实例分析
2020/01/18 Javascript
详谈在flask中使用jsonify和json.dumps的区别
2018/03/26 Python
Python 中的Selenium异常处理实例代码
2018/05/03 Python
Python 中包/模块的 `import` 操作代码
2019/04/22 Python
Python基础之高级变量类型实例详解
2020/01/03 Python
pytorch下使用LSTM神经网络写诗实例
2020/01/14 Python
Keras 实现加载预训练模型并冻结网络的层
2020/06/15 Python
几款好用的python工具库(小结)
2020/10/20 Python
春秋航空官方网站:Spring Airlines
2017/09/27 全球购物
TCP协议通讯的过程和步骤是什么
2015/10/18 面试题
电气工程师岗位职责
2014/01/01 职场文书
英语教育专业毕业生求职信
2014/08/28 职场文书
自书遗嘱范文
2015/08/07 职场文书
浅谈mysql执行过程以及顺序
2021/05/12 MySQL
mysql拆分字符串作为查询条件的示例代码
2022/07/07 MySQL