Movatterモバイル変換


[0]ホーム

URL:


  1. Tecnologia Web para desenvolvedores
  2. HTML: Linguagem de Marcação de Hipertexto
  3. Referência HTML
  4. Atributos Globais
  5. itemprop

Esta página foi traduzida do inglês pela comunidade.Saiba mais e junte-se à comunidade MDN Web Docs.

View in EnglishAlways switch to English

itemprop

O atributo globalitemprop é usado para adicionar propriedades para um item. Todo elemento HTML pode ter um atributoitemprop especificado, e umitemprop consiste em um par de nome e valor. Cada par de nome e valor é chamado depropriedade, e um grupo de uma ou mais propriedades forma umitem. Os valores das propriedades são ou um texto ou uma URL e pode ser associada a uma grande variedade de elementos incluindo<audio>,<embed>,<iframe>,<img>,<link>,<object>,<source> ,<track>, and<video>.

Exemplos

The example below shows the source for a set of elements marked up withitemprop attributes, followed by a table showing the resulting structured data.

HTML

html
<div itemscope itemtype="http://schema.org/Movie">  <h1 itemprop="name">Avatar</h1>  <span    >Director:    <span itemprop="director">James Cameron</span>    (born August 16, 1954)</span  >  <span itemprop="genre">Science fiction</span>  <a href="../movies/avatar-theatrical-trailer.html" itemprop="trailer"    >Trailer</a  ></div>

Structured data

Item
itemprop nameitemprop value
itempropnameAvatar
itempropdirectorJames Cameron
itempropgenreScience fiction
itemproptrailer../movies/avatar-theatrical-trailer.html

Properties

Properties have values that are either a string or a URL. When a string value is a URL, it is expressed using the<a> element and itshref attribute, the<img> element and itssrc attribute, or other elements that link to or embed external resources.

Three properties with values that are strings

html
<div itemscope>  <p>My name is <span itemprop="name">Neil</span>.</p>  <p>My band is called <span itemprop="band">Four Parts Water</span>.</p>  <p>I am <span itemprop="nationality">British</span>.</p></div>

One property, "image", whose value is a URL

html
<div itemscope>  <img itemprop="image" src="google-logo.png" alt="Google" /></div>

When a string value can't be easily read and understood by a person (e.g., a long string of numbers and letters), it can be displayed using the value attribute of the data element, with the more easily-understood-by-a human-version given in the element's contents (which is not part of the structured data - see example below).

An item with a property whose value is a product ID

The ID is not human-friendly, so the product's name is used the human-visible text instead of the ID.

html
<h1 itemscope>  <data itemprop="product-id" value="9678AOU879">The Instigator 2000</data></h1>

For numeric data, the meter element and its value attribute can be used.

A meter element

html
<div itemscope itemtype="http://schema.org/Product">  <span itemprop="name">Panasonic White 60L Refrigerator</span>  <img src="panasonic-fridge-60l-white.jpg" alt="" />  <div    itemprop="aggregateRating"    itemscope    itemtype="http://schema.org/AggregateRating">    <meter itemprop="ratingValue" min="0" value="3.5" max="5">      Rated 3.5/5    </meter>    (based on <span itemprop="reviewCount">11</span>    customer reviews)  </div></div>

Similarly, for date- and time-related data, the time element and its datetime attribute can be used.

An item with one property, "birthday", whose value is a date

html
<div itemscope>  I was born on  <time itemprop="birthday" datetime="2009-05-10">May 10th 2009</time>.</div>

Properties can also be groups of name-value pairs, by putting the itemscope attribute on the element that declares the property. Each value is either a string or a group of name-value pairs (i.e. an item).

An outer item representing a person, and an inner one representing a band

html
<div itemscope>  <p>Name: <span itemprop="name">Amanda</span></p>  <p>    Band:    <span itemprop="band" itemscope>      <span itemprop="name">Jazz Band</span>      (<span itemprop="size">12</span> players)</span    >  </p></div>

The outer item above has two properties, "name" and "band". The "name" is "Amanda", and the "band" is an item in its own right, with two properties, "name" and "size". The "name" of the band is "Jazz Band", and the "size" is "12". The outer item in this example is a top-level microdata item. Items that are not part of others are called top-level microdata items.

All the properties separated from their items

This example is the same as the previous one, but all the properties are separated from their items

html
<div itemscope itemref="a b"></div><p>Name: <span itemprop="name">Amanda</span></p><div itemprop="band" itemscope itemref="c"></div><div>  <p>Band: <span itemprop="name">Jazz Band</span></p>  <p>Size: <span itemprop="size">12</span> players</p></div>

This gives the same result as the previous example. The first item has two properties, "name", set to "Amanda", and "band", set to another item. That second item has two further properties, "name", set to "Jazz Band", and "size", set to "12".

An item can have multiple properties with the same name and different values.

Ice cream with two flavors

html
<div itemscope>  <p>Flavors in my favorite ice cream:</p>  <ul>    <li itemprop="flavor">Lemon sorbet</li>    <li itemprop="flavor">Apricot sorbet</li>  </ul></div>

This results in an item with two properties, both with the name "flavor" and having the values "Lemon sorbet" and "Apricot sorbet".

An element introducing a property can also introduce multiple properties at once, to avoid duplication when some of the properties have the same value.

An item with two properties, "favorite-color" and "favorite-fruit", both set to the value "orange"

html
<div itemscope>  <span    itemprop="favorite-color    favorite-fruit"    >orange</span  ></div>

Nota:There is no relationship between the microdata and the content of the document where the microdata is marked up.

Same structured data marked up in two different ways

There is no semantic difference between the following two examples

html
<figure>  <img src="castle.jpeg" />  <figcaption>    <span itemscope><span itemprop="name">The Castle</span></span> (1986)  </figcaption></figure>
html
<span itemscope><meta itemprop="name" content="The Castle" /></span><figure>  <img src="castle.jpeg" />  <figcaption>The Castle (1986)</figcaption></figure>

Both have a figure with a caption, and both, completely unrelated to the figure, have an item with a name-value pair with the name "name" and the value "The Castle". The only difference is that if the user drags the figcaption out of the document, the item will be included in the drag-and-drop data. The image associated with the item won't be included.

Names and values

A property is an unordered set of unique tokens that are case-sensitive and represent the name-value pairs. The property value must have at least one token. In the example below, each data cell is a token.

Names examples

Item
itempropnameitempropvalue
itempropcountryIreland
itempropOption2
itemprophttps://www.flickr.com/photos/nlireland/6992065114/Ring of Kerry
itempropimghttps://www.flickr.com/photos/nlireland/6992065114/
itempropwebsiteflickr
itemprop(token)(token)

Tokens are either strings or URL's. An item is called atyped item if it is a URL. Otherwise, it is a string. Strings cannot contain a period or a colon (see below).

  1. If the item is a typed item it must be either:

    1. A defined property name, or
    2. A valid URL, which refers to the vocabulary definition, or
    3. A valid URL that is used as a proprietary item property name (i.e. one not defined in a public specification), or
  2. If the item is not a typed item it must be:

    1. A string that contains no "." (U+002E FULL STOP) characters and no ":" characters (U+003A COLON) and is used as a proprietary item property name (again, one not defined in a public specification).

Nota:The rules above disallow ":" characters in non-URL values because otherwise they could not be distinguished from URLs. Values with "." characters are reserved for future extensions. Space characters are disallowed because otherwise the values would be parsed as multiple tokens.

Values

The property value of a name-value pair is as given for the first matching case in the following list:

  • If the element has anitemscope attribute

    • The value is theitem created by the element.
  • If the element is ameta element

    • The value is the value of the element'scontent attribute
  • If the element is anaudio,embed,iframe,img,source,track, orvideo element

    • The value is the resulting URL string that results from parsing the value of the element's src attribute relative to the node document (part of theMicrodata DOM API) of the element at the time the attribute is set
  • If the element is ana,area, orlink element

    • The value is the resulting URL string that results from parsing the value of the element's href attribute relative to the node document of the element at the time the attribute is set
  • If the element is anobject element

    • The value is the resulting URL string that results from parsing the value of the element's data attribute relative to the node document of the element at the time the attribute is set
  • If the element is adata element

    • The value is the value of the element's value attribute
  • If the element is ameter element

    • The value is the value of the element'svalue attribute
  • If the element is atime element

    • The value is the element'sdatetime value

Otherwise

  • The value is the element'stextContent.

If a property's value is aURL, the property must be specified using a URL property element. The URL property elements are thea,area,audio,embed,iframe,img,link,object,source,track, andvideo elements.

Name order

Names are unordered relative to each other, but if a particular name has multiple values, they do have a relative order.

In the following example, the "a" property has the values "1" and "2",in that order, but whether the "a" property comes before the "b" property or not is not important

html
<div itemscope>  <p itemprop="a">1</p>  <p itemprop="a">2</p>  <p itemprop="b">test</p></div>

The following is equivalent

html
<div itemscope>  <p itemprop="b">test</p>  <p itemprop="a">1</p>  <p itemprop="a">2</p></div>

As is the following

html
<div itemscope>  <p itemprop="a">1</p>  <p itemprop="b">test</p>  <p itemprop="a">2</p></div>

And the following

html
<div>  <p itemprop="a">1</p></div><div itemscope itemref="x">  <p itemprop="b">test</p>  <p itemprop="a">2</p></div>

Other examples

HTML

html
<dl  itemscope  itemtype="http://vocab.example.net/book"  itemid="urn:isbn:0-330-34032-8">  <dt>Title</dt>  <dd itemprop="title">The Reality Dysfunction</dd>  <dt>Author</dt>  <dd itemprop="author">Peter F. Hamilton</dd>  <dt>Publication date</dt>  <dd><time itemprop="pubdate" datetime="1996-01-26">26 January 1996</time></dd></dl>

Structured data

itemscopeitemtype: itemid http://vocab.example.net/book: urn:isbn:0-330-34032-8
itemproptitleThe Reality Dysfunction
itempropauthorPeter F. Hamilton
itemproppubdate1996-01-26

Result

Specifications

SpecificationStatusComment
itempropWG Note - No longer being actively developed

Compatibilidade com navegadores

See also

Help improve MDN

Learn how to contribute

This page was last modified on byMDN contributors.


[8]ページ先頭

©2009-2025 Movatter.jp