blob: 8b7a7c7bc3900a335165f0dbf790956b5e8f772a (
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
|
---
title: itemscope
slug: Web/HTML/Global_attributes/itemscope
tags:
- Attribut
- Attribut universel
- HTML
- Micro-données
- Microdata
- Reference
translation_of: Web/HTML/Global_attributes/itemscope
original_slug: Web/HTML/Attributs_universels/itemscope
---
{{HTMLSidebar("Global_attributes")}}
L'[attribut universel](/fr/docs/Web/HTML/Attributs_universels) **`itemscope`** fonctionne généralement avec l'attribut `itemtype` afin d'indiquer qu'un bloc HTML contient un objet donné. `itemscope` crée l'objet et définit la portée de l'`itemtype` associé. Il est possible d'associer un attribut `itemscope` à n'importe quel élément HTML.
### Les identifiants rattachés à `itemscope`
Un élément qui possède un attribut `itemscope` permet de définir un nouvel élément qui sera un groupe de paires de noms/valeurs. Les éléments qui ont un attribut `itemscope` et un attribut `itemtype` peuvent également définir un attribut `id` (à ne pas confondre avec `itemid)` pour identifier de façon unique l'élément sur le Web.
## Syntaxe
### Syntaxe formelle
itemscope
## Exemple
Dans cet exemple, on a trois attributs `itemscopes`. Ces trois `itemscopes` définissent les portées respectives des `itemtypes` correspondants qui sont : Recipe, AggregateRating et NutritionInformation.
### HTML
```html
<div itemscope itemtype="https://schema.org/Recipe">
<h2 itemprop="name">Grandma's Holiday Apple Pie</h2>
<img itemprop="image" src="https://c1.staticflickr.com/1/30/42759561_8631e2f905_n.jpg" width="50" height="50"/>
<p>By <span itemprop="author" itemscope itemtype="https://schema.org/Person">
<span itemprop="name">Carol Smith</p></span>
</span>
<p>Published: <time datetime="2009-11-05" itemprop="datePublished">
November 5, 2009</p></time>
<span itemprop="description">This is my grandmother's apple pie recipe. I like to add a dash of nutmeg.<br></span>
<span itemprop="aggregateRating" itemscope itemtype="https://schema.org/AggregateRating">
<span itemprop="ratingValue">4.0</span> stars based on <span itemprop="reviewCount">35</span> reviews<br></span>
Prep time: <time datetime="PT30M" itemprop="prepTime">30 min<br></time>
Cook time: <time datetime="PT1H" itemprop="cookTime">1 hour<br></time>
Total time: <time datetime="PT1H30M" itemprop="totalTime">1 hour 30 min<br></time>
Yield: <span itemprop="recipeYield">1 9" pie (8 servings)<br></span>
<span itemprop="nutrition" itemscope itemtype="https://schema.org/NutritionInformation">
Serving size: <span itemprop="servingSize">1 medium slice<br></span>
Calories per serving: <span itemprop="calories">250 cal<br></span>
Fat per serving: <span itemprop="fatContent">12 g<br></span>
</span>
<p>Ingredients:<br>
<span itemprop="recipeIngredient">Thinly-sliced apples: 6 cups<br></span>
<span itemprop="recipeIngredient">White sugar: 3/4 cup<br></span>
... </p>
Directions: <br>
<div itemprop="recipeInstructions">
1. Cut and peel apples<br>
2. Mix sugar and cinnamon. Use additional sugar for tart apples. <br>
...
</div>
</div>
```
### Structure des données
<table class="standard-table">
<tbody>
<tr>
<td colspan="1" rowspan="14">itemscope</td>
<td>itemtype</td>
<td colspan="2" rowspan="1">Recipe</td>
</tr>
<tr>
<td>itemprop</td>
<td>name:</td>
<td>Grandma's Holiday Apple Pie</td>
</tr>
<tr>
<td>itemprop</td>
<td>image:</td>
<td>https://c1.staticflickr.com/1/30/42759561_8631e2f905_n.jpg</td>
</tr>
<tr>
<td>itemprop</td>
<td>datePublished:</td>
<td>2009-11-05</td>
</tr>
<tr>
<td>itemprop</td>
<td>description:</td>
<td>
This is my grandmother's apple pie recipe. I like to add a dash of
nutmeg.
</td>
</tr>
<tr>
<td>itemprop</td>
<td>prepTime:</td>
<td>PT30M</td>
</tr>
<tr>
<td>itemprop</td>
<td>cookTime:</td>
<td>PT1H</td>
</tr>
<tr>
<td>itemprop</td>
<td>totalTime:</td>
<td>PT1H30M</td>
</tr>
<tr>
<td>itemprop</td>
<td>recipeYield:</td>
<td>1 9" pie (8 servings)</td>
</tr>
<tr>
<td>itemprop</td>
<td>recipeIngredient:</td>
<td>Thinly-sliced apples: 6 cups</td>
</tr>
<tr>
<td>itemprop</td>
<td>recipeIngredient:</td>
<td>White sugar: 3/4 cup</td>
</tr>
<tr>
<td>itemprop</td>
<td>recipeInstructions:</td>
<td>
1. Cut and peel apples 2. Mix sugar and cinnamon. Use additional sugar
for tart apples .
</td>
</tr>
<tr>
<td>itemprop</td>
<td colspan="2" rowspan="1">author [Person]:</td>
</tr>
<tr>
<td>itemprop</td>
<td>name:</td>
<td>Carol Smith</td>
</tr>
<tr>
<td colspan="1" rowspan="3">itemscope</td>
<td>itemprop[itemtype]</td>
<td colspan="2" rowspan="1">aggregateRating [AggregateRating]:</td>
</tr>
<tr>
<td>itemprop</td>
<td>ratingValue:</td>
<td>4.0</td>
</tr>
<tr>
<td>itemprop</td>
<td>reviewCount:</td>
<td>35</td>
</tr>
<tr>
<td colspan="1" rowspan="4">itemscope</td>
<td>itemprop[itemtype]</td>
<td colspan="2" rowspan="1">nutrition [NutritionInformation]:</td>
</tr>
<tr>
<td>itemprop</td>
<td>servingSize:</td>
<td>1 medium slice</td>
</tr>
<tr>
<td>itemprop</td>
<td>calories:</td>
<td>250 cal</td>
</tr>
<tr>
<td>itemprop</td>
<td>fatContent:</td>
<td>12 g</td>
</tr>
</tbody>
</table>
> **Note :** Pour extraire des micro-données d'un document HTML, vous pouvez utiliser [l'outil d'extraction de Google pour les micro-données.](https://developers.google.com/structured-data/testing-tool/) Vous pouvez par exemple utiliser le document HTML précédent.
## Spécifications
| Spécification | État | Commentaires |
| ------------------------------------------------------------------------------------------------ | ------------------------------------ | ------------ |
| {{SpecName('HTML Microdata', "#dfn-itemscope", "itemscope")}} | {{Spec2('HTML Microdata')}} | |
| {{SpecName('HTML WHATWG', "microdata.html#attr-itemscope", "itemscope")}} | {{Spec2('HTML WHATWG')}} | |
## Compatibilité des navigateurs
{{Compat("html.global_attributes.itemscope")}}
## Voir aussi
- [Les différents attributs universels](/fr/docs/Web/HTML/Attributs_universels)
- Les autres attributs universels relatifs aux microdonnées :
- {{htmlattrxref("itemid")}}
- {{htmlattrxref("itemprop")}}
- {{htmlattrxref("itemref")}}
- {{htmlattrxref("itemscope")}}
- {{htmlattrxref("itemtype")}}
|