Interface DocumentType

継承元:
Node
プロパティ:
entities, internalSubset, name, notations, publicId, systemId
メソッド:

Document はそれぞれ doctype プロパティを持ち、その値は null または DocumentType オブジェクトのいずれかである。 DOM Core におけるDocumentType インターフェイスは、文書に定義された実体のリストに対するインターフェイスを提供する。他のものは殆ど提供しないが、それはこれを書いている時点では DTD 表現上の名前空間の効力と様々な XML スキーマの力が明らかではないからである。

DOMレベル2 は、 DocumentType ノードの編集をサポートしない。

プロパティ:

IDL 定義:

interface DocumentType : Node {
  readonly attribute DOMString        name;
  readonly attribute NamedNodeMap     entities;
  readonly attribute NamedNodeMap     notations;
  // Introduced in DOM Level 2:
  readonly attribute DOMString        publicId;
  // Introduced in DOM Level 2:
  readonly attribute DOMString        systemId;
  // Introduced in DOM Level 2:
  readonly attribute DOMString        internalSubset;
};


Issued: / Revised: / All rights reserved. © 2002-2016 TAKI