网络学院 w3pop社区 网络资源 IT新闻

w3pop.com :: 网络学院 :: XML DOM :: DOM 文档执行

会员登陆

帐号

密码

回答

记住密码

忘记密码? 注册

XML DOM
DOM 节点
DOM 节点列表
DOM 解析
DOM 遍历节点树
DOM Mozilla 和 I..
DOM 获取节点
DOM 设置节点
DOM 删除节点
DOM 更换节点
DOM 建立节点
DOM 添加节点
DOM 克隆节点
DOM 节点类型
DOM Node
DOM NodeList
DOM NamedNodeMap
DOM Document
DOM DocumentType
DOM ProcessingIn..
DOM Element

DOM 文档执行


作者:w3pop.com 翻译/整理:w3pop.com 发布:2007-09-14 浏览:2149 :: ::

The DOMImplementation object performs operations that are independent of any particular instance of the document object model.
DOMImplementation 对象执行的是与文档对象模型的所有特定案例无关的操作。


The DocumentImplementation object
Documentimplementation 对象

The DOMImplementation object performs operations that are independent of any particular instance of the document object model.
DOMImplementation 对象执行的是与文档对象模型的所有特定案例无关的操作。

IE: Internet Explorer, F: Firefox, O: Opera, W3C: World Wide Web Consortium (Internet Standard)
IE: IE浏览器、F: Firefox 火狐浏览器、O: Opera、W3C: 万维网联盟(互联网标准)

DocumentImplementation Object Methods
DocumentImplementation 对象方法

Method
方法
Description
描述
IE F O W3C
createDocument(nsURI, name, doctype) Creates a new DOM Document object of the specified doctype
创建一个全新的指定文档类型的 DOM 文档对象
      Yes
createDocumentType(name, pubId, systemId) Creates an empty DocumentType node
创建一个空的文档类型节点
      Yes
getFeature(feature, version) Returns an object which implements the APIs of the specified feature and version, if the is any
返回一个对象,该对象用于执行任意指定特征和版本的应用程序
      Yes
hasFeature(feature, version) Checks whether the DOM implementation implements a specific feature and version
检验一个DOM执行程序是否执行一个包含具体的特征或版本的程序
      Yes

评论 (1) 1 All