blob: 8e26a0ed8db3767033f8e725c1484727be3a5171 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
---
title: Document.implementation
slug: Web/API/Document/implementation
tags:
- API
- DOM
- Document
- NeedsContent
- Property
- Reference
translation_of: Web/API/Document/implementation
---
<div>{{ ApiRef("DOM") }}</div>
<p><code><strong>Document.implementation</strong></code> プロパティは、現在の文書に関連付けられた {{domxref("DOMImplementation")}} オブジェクトを返します。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox notranslate"><var>DOMImpObj</var> = <var>document</var>.implementation;
</pre>
<h2 id="Example" name="Example">例</h2>
<pre class="brush: js notranslate">var modName = "HTML";
var modVer = "2.0";
var conformTest = document.implementation.hasFeature( modName, modVer );
alert( "DOM " + modName + " " + modVer + " supported?: " + conformTest );
// DOM Level 2 HTML module に対応している場合、"DOM HTML 2.0 supported?: true" とアラート表示されます。
</pre>
<p>モジュール名 (※ Core 、HTML 、XML 等) の一覧は <a href="http://www.w3.org/TR/DOM-Level-2-Core/introduction.html#ID-Conformance-h2">Conformance Section</a> で入手可能です。</p>
<h2 id="Notes" name="Notes">メモ</h2>
<p>W3C's DOM Level 1 勧告では <code>hasFeature</code> メソッドのみが定義されているので、ブラウザーが DOM モジュールに対応しているかどうかを判断する方法の一つです。 (上記の例と <a href="http://www.w3.org/2003/02/06-dom-support.html">What does your user agent claim to support?</a> を参照してください)。利用できるのであれば、 <code>DOMImplementation</code> の他のメソッドが、単一文書の外のものを制御するサービスを提供します。例えば、 <code>DOMImplementation</code> インターフェイスは <code>createDocumentType</code> メソッドを含んでおり、実装によって管理された1つ以上の文書に DTD が作成されます。</p>
<h2 id="Specification" name="Specification">仕様書</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">状態</th>
<th scope="col">備考</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('DOM WHATWG', '#dom-document-implementation', 'document.implementation')}}</td>
<td>{{Spec2('DOM WHATWG')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<p>{{Compat("api.Document.implementation")}}</p>
<h3 id="Gecko-specific_notes" name="Gecko-specific_notes">Gecko に特有のメモ</h3>
<ul>
<li>Gecko 19.0 {{geckoRelease("19.0")}} から、 {{domxref("DOMImplementation.hasFeature","hasFeature")}} メソッドは常に true を返します。</li>
</ul>
|