Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

DOM Levels

  下列所述內容乃是 World Wide Web Consortium 關於  DOM specifications 的摘要,你可以到 W3C DOM site: https://www.w3.org/DOM 取得更多資料。

  本文提供一些關於 DOM Level 的概述以及 Mozilla 的支援情形。倘若你想找到更多關於 DOM 的資料,請參閱 Gecko DOM Reference

DOM Level 1

  DOM Level 1 specification 分成兩個部分: Core 和 HTML。Core Level 1 provides a low-level set of fundamental interfaces that can represent any structured document, as well as defining extended interfaces for representing an XML document. HTML Level 1 provides additional, higher-level interfaces that are used with the fundamental interfaces defined in Core Level 1 to provide a more convenient view of an HTML document. Interfaces introduced in DOM1 include, among 下others, the Document, Node, Attr, Element, and Text interfaces. All interfaces contain attributes and/or methods that can be used to interact with XML and HTML documents.

Level of support: Excellent. See our bugs in the Core and HTML specifications.

DOM Level 2

The DOM Level 2 specification contains six different specifications: The DOM2 Core, Views, Events, Style, Traversal and Range, and the DOM2 HTML. Most of the DOM Level 2 is supported in Mozilla.

  1. The DOM2 Core extends the functionality of the DOM1 Core. It also contains specialized interfaces dedicated to XML. Examples of methods introduced in the DOM2 Core include the famous getElementById, and many namespace-related methods.

    Level of support: Very good. See our bugs in the Core specification.

  2. The DOM2 Views allows programs and scripts to dynamically access and update the content of a representation of a document. The introduced interfaces are AbstractView and DocumentView.

    Level of support: Perfect.

  3. The DOM2 Events gives a generic event system to programs and scripts. It introduces the concepts of event flow, capture, bubbling, and cancellation. Famous methods here include addEventListener and handleEvent. Several interfaces make your life easier when dealing with events: EventTarget, EventListener, Event, DocumentEvent, MouseEvent, MutationEvent, etc. However, it does not include an interface for the keyboard events, which will be dealt with in later versions of the DOM.

    Level of support: Very good. See our bugs in the Events specification.

  4. The DOM2 CSS, or DOM2 Style, allows programs and scripts to dynamically access and update the content of style sheets. It has interfaces for Style Sheets, Cascading Style Sheets, CSSRule, CSSStyleDeclaration, the famous getComputedStyle (supported in Mozilla), the many many CSS2Properties, and all the media rules you can imagine.

    Level of support: Good. See our bugs in the Style specification.

  5. The DOM2 Traversal and Range allow programs and scripts to dynamically traverse and identify a range of content in a document. The DOM2 Traversal provides interfaces like NodeIterator and TreeWalker to easily traverse the content of a document. The DOM2 Range allows the creation, insertion, modification, and deletion of a range of content in a Document, DocumentFragment, or Attr. It can be characterized as selecting all of the content between a pair of boundary-points.

    Level of support: Good for Range; for Traversal, the TreeWalker is supported, and NodeIterator support was implemented in Firefox 3.5.

  6. The DOM2 HTML allows programs and scripts to dynamically access and update the content and structure of HTML documents. It extends the interfaces defined in the DOM1 HTML, using the DOM2 Core possibilities. It introduces the contentDocument property, a useful way to access the document contained in a frame.

    Level of support: Good. See our bugs in the HTML specification.

DOM Level 3

The DOM Level 3 specification contains five different specifications: The DOM3 Core, Load and Save, Validation, Events, and XPath.

  1. The DOM3 Core will extend the functionality of the DOM1 and DOM2 Core specs. New methods and properties include adoptNode() and textContent, to name a couple.

    Level of support: Only a few properties and methods are supported, like baseURI. If you want to help with the code, please see bug 159167.

  2. The DOM3 Load and Save allows programs and scripts to dynamically load the content of an XML document into a DOM document, and serialize a DOM document into an XML document.

    Level of support: None (bug 155749). Mozilla supports non-standard DOMParser and XMLSerializer objects instead.

  3. The DOM3 Validation allows programs and scripts to dynamically update the content and the structure of documents while ensuring that the document remains valid, or to ensure that the document becomes valid.

    Level of support: None.

  4. The DOM3 Events is the extension of the DOM2 Events specification. This specification mainly focuses on keyboard events and how to handle them.

    Level of support: Parts.

  5. The DOM3 XPath provides simple functionalities to access a DOM tree using XPath 1.0.

    Level of support: Parts. See XPath

Original Document Information

  • Author: Fabian Guisset
  • Copyright Information: Copyright © 1998-2006 by individual mozilla.org contributors; content available under a Creative Commons license.

The DOM levels list was changed: https://www.w3.org/DOM/DOMTR#dom3

文件標籤與貢獻者

 此頁面的貢獻者: sailplaneTW
 最近更新: sailplaneTW,