aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/htmlmapelement/index.html
blob: 23fb46df351e2b859860439a4a2b8cf64756943e (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
---
title: HTMLMapElement
slug: Web/API/HTMLMapElement
tags:
  - API
  - HTML DOM
  - インターフェイス
  - リファレンス
translation_of: Web/API/HTMLMapElement
---
<div>
<div>{{ APIRef("HTML DOM") }}</div>
</div>

<p><strong><code>HTMLMapElement</code></strong> インターフェイスは、map 要素のレイアウトと表示を操作するための特別なプロパティとメソッド (継承によっても利用可能な通常のオブジェクト {{domxref("HTMLElement")}} インターフェイスを超えるもの) を提供します。</p>

<p>{{InheritanceDiagram(600, 120)}}</p>

<h2 id="プロパティ">プロパティ</h2>

<p><em>親の {{domxref("HTMLElement")}} からプロパティを継承しています。</em></p>

<dl>
 <dt>{{domxref("HTMLMapElement.name")}}</dt>
 <dd>Is a {{domxref("DOMString")}} representing the {{HTMLElement("map")}} element for referencing it other context. If the <code>id</code> attribute is set, this must have the same value; and it cannot be <code>null</code> or empty.</dd>
 <dt>{{domxref("HTMLMapElement.areas")}} {{readonlyInline}}</dt>
 <dd>Is a live {{domxref("HTMLCollection")}} representing the {{HTMLElement("area")}} elements associated to this {{HTMLElement("map")}}.</dd>
</dl>

<h2 id="メソッド">メソッド</h2>

<p><em>特定のメソッドはありません。親である {{domxref("HTMLElement")}} からメソッドを継承します。</em></p>

<h2 id="仕様">仕様</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">仕様書</th>
   <th scope="col">ステータス</th>
   <th scope="col">コメント</th>
  </tr>
  <tr>
   <td>{{SpecName('HTML WHATWG', "#htmlmapelement", "HTMLMapElement")}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td> </td>
  </tr>
  <tr>
   <td>{{SpecName('HTML5 W3C', "embedded-content-0.html#the-map-element", "HTMLMapElement")}}</td>
   <td>{{Spec2('HTML5 W3C')}}</td>
   <td><code>images</code> プロパティを追加します。</td>
  </tr>
  <tr>
   <td>{{SpecName('DOM2 HTML', 'html.html#ID-94109203', 'HTMLAreaElement')}}</td>
   <td>{{Spec2('DOM2 HTML')}}</td>
   <td>{{SpecName("DOM1")}} からの変更はありません。</td>
  </tr>
  <tr>
   <td>{{SpecName('DOM1', 'level-one-html.html#ID-94109203', 'HTMLAreaElement')}}</td>
   <td>{{Spec2('DOM1')}}</td>
   <td>初期定義</td>
  </tr>
 </tbody>
</table>

<h2 id="ブラウザの互換性">ブラウザの互換性</h2>

<p>{{Compat("api.HTMLMapElement")}}</p>

<h2 id="あわせて参照">あわせて参照</h2>

<ul>
 <li>HTML element implementing this interface: {{ HTMLElement("map") }}.</li>
</ul>