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.

document.implementation

概要

返回一个和当前文档相关联的DOMImplementation对象。

语法

DOMImpObj = document.implementation;

示例

var modName = "HTML";
var modVer = "2.0";
var conformTest = document.implementation.hasFeature( modName, modVer );

alert( "DOM " + modName + " " + modVer + " supported?: " + conformTest );

// alerts with: "DOM HTML 2.0 supported?: true" if DOM Level 2 HTML module is supported.

可以在一致性章节中查看可用的一系列DOM2级模型名称(例如:Core, HTML, XML等等)。

说明

W3C的DOM1级建议值规定了一种检测浏览器对某个DOM模型是否支持的方法——hasFeature方法(请参考上边的例子以及这篇文章 What does your user agent claim to support?)。如果它可用的话,那么DOMImplementation接口的其他方法就可以为操作文档以外的内容提供一些服务了。例如,DOMImplementation接口包含一个createDocumentType方法,它可以为实例管理的文档创建对应的DTD文档定义。

方法

名称 动作 返回值
createDocument (namespaceURI, qualifiedNameStr, DocumentType )   document
createDocumentType ( qualifiedNameStr, publicId, systemId )   DocumentType
createHTMLDocument ( title )   document
getFeature ( feature, version )   DOMObject
hasFeature ( feature, version )   Boolean

规范

Gecko引擎的特别说明

  • 从Gecko 19.0 (Firefox 19.0 / Thunderbird 19.0 / SeaMonkey 2.16)开始hasFeature方法总是返回true。

文档标签和贡献者

 此页面的贡献者: teoli, jsx, Nealzhu
 最后编辑者: jsx,