blob: 5a897d425fa851b2d7158c5c7825c2efbb2e6c7c (
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
67
68
69
70
71
72
73
74
75
76
|
---
title: DOMImplementation
slug: Web/API/DOMImplementation
tags:
- API
- DOM
- Interface
- Reference
translation_of: Web/API/DOMImplementation
---
<p>{{ ApiRef("DOM") }}</p>
<p><code><strong>DOMImplementation</strong></code> インターフェイスは特定の文書に依存しないメソッドを提供するオブジェクトを表します。こうしたオブジェクトは{{domxref("Document.implementation")}} プロパティを返します。</p>
<h2 id="Property" name="Property">プロパティ</h2>
<p><em>このインターフェイスは特定のプロパティを持たず、継承もしていません。</em></p>
<h2 id="Methods" name="Methods">メソッド</h2>
<p><em>継承するメソッドはありません。</em></p>
<dl>
<dt>{{domxref("DOMImplementation.createDocument()")}}</dt>
<dd>{{domxref("XMLDocument")}}を作成して返します。</dd>
<dt>{{domxref("DOMImplementation.createDocumentType()")}}</dt>
<dd>{{domxref("DocumentType")}}を作成して返します。</dd>
<dt>{{domxref("DOMImplementation.createHTMLDocument()")}}</dt>
<dd>HTML {{domxref("Document")}}を作成して返します。</dd>
<dt>{{domxref("DOMImplementation.hasFeature()")}}</dt>
<dd>所与の機能がサポートされているかどうかを返す{{domxref("Boolean")}}。この関数は信頼できず、互換性の目的のためだけに残されていますが、例外は SVG関連の問い合わせで、常に <code>true</code>を返します。古いブラウザーはこのふるまいは、とても不整合を起こします。</dd>
</dl>
<h2 id="Specifications" name="Specifications">仕様</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">仕様書</th>
<th scope="col">策定状況</th>
<th scope="col">コメント</th>
</tr>
<tr>
<td>{{SpecName('DOM WHATWG', '#domimplementation', 'DOMImplementation')}}</td>
<td>{{Spec2('DOM WHATWG')}}</td>
<td><code>getFeature()</code> メソッドを削除。<br>
<code>createHTMLDocument()</code> メソッドを追加。<br>
<code>createDocument()</code> の返り値の型を {{domxref("Document")}} から {{domxref("XMLDocument")}} に変更。</td>
</tr>
<tr>
<td>{{SpecName('DOM3 Core', 'core.html#ID-102161490', 'DOMImplementation')}}</td>
<td>{{Spec2('DOM3 Core')}}</td>
<td><code>getFeature()</code> メソッド追加 (ユーザーエージェントで実装されることはありません)。</td>
</tr>
<tr>
<td>{{SpecName('DOM2 Core', 'core.html#ID-102161490', 'DOMImplementation')}}</td>
<td>{{Spec2('DOM2 Core')}}</td>
<td><code>createDocument()</code> および <code>createDocumentType()</code> メソッドが追加。</td>
</tr>
<tr>
<td>{{SpecName('DOM1', 'level-one-core.html#ID-102161490', 'DOMImplementation')}}</td>
<td>{{Spec2('DOM1')}}</td>
<td>初期定義。</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2>
<p>{{Compat("api.DOMImplementation")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li><a href="/ja/docs/DOM/DOM_Reference" title='/ja/docs/DOM/DOM_Reference"'>The DOM interfaces index.</a></li>
</ul>
|