blob: 2638724527ac4746f0565c9868a7bb1fb1a39b80 (
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
|
---
title: itemid
slug: Web/HTML/Global_attributes/itemid
tags:
- HTML
- HTML マイクロデータ
- Reference
- itemid
- グローバル属性
- マイクロデータ
- 属性
translation_of: Web/HTML/Global_attributes/itemid
---
<div>{{HTMLSidebar("Global_attributes")}}</div>
<p><span class="seoSummary"><code><strong>itemid</strong></code> <a href="/ja/docs/Web/HTML/Global_attributes">グローバル属性</a>は、項目の固有でグローバルな識別子の形でマイクロデータを提供します。</span> <code>itemid</code> 属性は、 {{htmlattrxref("itemscope")}} および {{htmlattrxref("itemtype")}} 属性のある要素にだけ指定することができます。また <code>itemid</code> は、グローバル識別子に対応する語彙を参照または定義する <code>itemtype</code> に関係した <code>itemscope</code> 属性を持つ要素でのみ使用することができます。</p>
<p><code>itemtype</code> のグローバル識別子の正確な意味は、それを特定する語彙の中で識別子の定義が提供されます。語彙は同じグローバル識別子を持つ複数の項目が共存できるかどうか、もしそうであれば、同じ識別子を持つ項目がどのように扱われるかを定義します。</p>
<p class="note"><strong>注:</strong> {{glossary("WHATWG")}} の定義では、 <code>itemid</code> が {{glossary("URL")}} でなければならないと指定しています。しかし、以下の例では {{glossary("URN")}} も使用されることを明らかに示しています。この矛盾はマイクロデータ仕様の不完全性を反映したものかもしれません。</p>
<h2 id="Example" name="Example">例</h2>
<h3 id="HTML">HTML</h3>
<pre class="brush: html notranslate"><dl itemscope
itemtype="http://vocab.example.net/book"
itemid="urn:isbn:0-330-34032-8">
<dt>Title <dd itemprop="title">The Reality Dysfunction
<dt>Author <dd itemprop="author">Peter F. Hamilton
<dt>Publication date
<dd><time itemprop="pubdate" datetime="1996-01-26">26 January 1996</time> </dl></pre>
<h3 id="Structured_data" name="Structured_data">構造化データ</h3>
<table class="standard-table">
<tbody>
<tr>
<td colspan="1" rowspan="14">itemscope</td>
<td>itemtype: itemid</td>
<td colspan="2" rowspan="1">
<div class="jyrRxf-eEDwDf jcd3Mb IZ65Hb-hUbt4d">http://vocab.example.net/book: urn:isbn:0-330-34032-8</div>
</td>
</tr>
<tr>
<td>itemprop</td>
<td>title</td>
<td>The Reality Dysfunction</td>
</tr>
<tr>
<td>itemprop</td>
<td>author</td>
<td>
<div class="jyrRxf-eEDwDf jcd3Mb">Peter F. Hamilton</div>
</td>
</tr>
<tr>
<td>itemprop</td>
<td>pubdate</td>
<td>1996-01-26</td>
</tr>
</tbody>
</table>
<h3 id="Result" name="Result">結果</h3>
<p>{{EmbedLiveSample('HTML', '', '', '', 'Web/HTML/Global_attributes/itemid')}}</p>
<h2 id="Specifications" name="Specifications">仕様書</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('HTML WHATWG', "microdata.html#attr-itemid", "itemid")}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの互換性</h2>
<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>
<p>{{Compat("html.global_attributes.itemid")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>すべての<a href="/ja/docs/Web/HTML/Global_attributes">他のグローバル属性</a></li>
<li>マイクロデータに関連する他のグローバル属性
<ul>
<li>{{htmlattrxref("itemid")}}</li>
<li>{{htmlattrxref("itemprop")}}</li>
<li>{{htmlattrxref("itemref")}}</li>
<li>{{htmlattrxref("itemscope")}}</li>
<li>{{htmlattrxref("itemtype")}}</li>
</ul>
</li>
</ul>
|