aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/html/atributos_globales/itemid/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/es/web/html/atributos_globales/itemid/index.html')
-rw-r--r--files/es/web/html/atributos_globales/itemid/index.html78
1 files changed, 78 insertions, 0 deletions
diff --git a/files/es/web/html/atributos_globales/itemid/index.html b/files/es/web/html/atributos_globales/itemid/index.html
new file mode 100644
index 0000000000..72ce64456e
--- /dev/null
+++ b/files/es/web/html/atributos_globales/itemid/index.html
@@ -0,0 +1,78 @@
+---
+title: itemid
+slug: Web/HTML/Atributos_Globales/itemid
+translation_of: Web/HTML/Global_attributes/itemid
+---
+<h2 id="Resumen">Resumen</h2>
+
+<p>El atributo <strong>Itemid </strong>es un identificador global y único de un item.</p>
+
+<p>Los atributos Itemid attributes sólo se pueden especificar en elmentos que tiene atributos tanto de <strong>itemscope </strong>como <strong>itemtype</strong>. Además, el itemid sólo puede ser especficiado en elemento con un atributo itemscope cuyo correspondiente itemtype hace referencia o define un vocabulario que soporte identificadores globales.</p>
+
+<p>Un vocabulario de itemtype nos proporcionará el significado exacto de un identificador global definido dentro del vocabulario. El vocabulario definirá si varios item con el mismo identificador global puede co-existir y, si están permitidos, cómo item con el mismo identificador son gestionados.</p>
+
+<p class="note"><strong>Nota:</strong> La definición de  itemid hecha por Whatwg.org dice que debe ser una URL. No parece que sea el caso de el ejemplo que se muestra más abajo. Sin embargo la definición de facto es que un itemid es un identificador único, así que los apropiado es URB. Esta inconsistencia refleja sin dudarlo la naturaleza incompleta de la espeficicación Microdata.</p>
+
+<h2 id="Ejemplo">Ejemplo</h2>
+
+<h3 id="HTML">HTML</h3>
+
+<pre class="brush: html">&lt;dl itemscope
+ itemtype="http://vocab.example.net/book"
+ itemid="urn:isbn:0-330-34032-8"&gt;
+&lt;dt&gt;Título &lt;dd itemprop="titulo"&gt;The Reality Dysfunction
+&lt;dt&gt;Autor &lt;dd itemprop="autor"&gt;Peter F. Hamilton
+&lt;dt&gt;Fecha de publicación
+&lt;dd&gt;&lt;time itemprop="fechapublicacion" datetime="26-01-1996"&gt;26 Enero 1996&lt;/time&gt; &lt;/dl&gt;</pre>
+
+<h3 id="Datos_estructurados">Datos estructurados</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"><span>http://vocab.example.net/book</span>: urn:isbn:0-330-34032-8</div>
+ </td>
+ </tr>
+ <tr>
+ <td>itemprop</td>
+ <td><span>titulo</span></td>
+ <td><span>The Reality Dysfunction</span></td>
+ </tr>
+ <tr>
+ <td>itemprop</td>
+ <td><span>autor</span></td>
+ <td>
+ <div class="jyrRxf-eEDwDf jcd3Mb"><span>Peter F. Hamilton</span></div>
+ </td>
+ </tr>
+ <tr>
+ <td>itemprop</td>
+ <td><span>fechapublicacion</span></td>
+ <td><span>26-01-1996</span></td>
+ </tr>
+ </tbody>
+</table>
+
+<h3 id="Resultado">Resultado</h3>
+
+<p>{{ EmbedLiveSample('HTML', '', '', '', 'Web/HTML/Global_attributes/itemid') }}</p>
+
+<h2 id="Especificaciones">Especificaciones</h2>
+
+<table class="standard-table" style="height: 105px; width: 490px;">
+ <thead>
+ <tr>
+ <th scope="col">Especificación</th>
+ <th scope="col">Estad</th>
+ </tr>
+ </thead>
+ <tbody>
+ <tr>
+ <td><a href="https://html.spec.whatwg.org/multipage/microdata.html#attr-itemid">itemid</a></td>
+ <td>Nota WG - No está siendo ya activamente desarrollado.</td>
+ </tr>
+ </tbody>
+</table>