Attributo HTML <ins> datetime

❮ Tag HTML <ins>

Esempio

Un testo inserito, con data e ora di inserimento del testo:

<p>This is a text.
<ins datetime="2015-09-15T22:55:03Z">This is an inserted text.</ins></p>

Definizione e utilizzo

L' datetimeattributo specifica la data e l'ora in cui il testo è stato inserito/modificato.


Supporto browser

Attribute
datetime Yes Yes Yes Yes Yes

Nota: l' datetimeattributo non ha alcun effetto visivo nei normali browser Web, ma può essere utilizzato dagli screen reader.


Sintassi

<ins datetime="YYYY-MM-DDThh:mm:ssTZD">

Valori di attributo

Value Description
YYYY-MM-DDThh:mm:ssTZD Specifies the date and time of when the text was inserted/changed.

Explanation of components:

  • YYYY - year (e.g. 2009)
  • MM - month (e.g. 01 for January)
  • DD - day of the month (e.g. 08)
  • T or a space - a separator (required if time is also specified)
  • hh - hour (e.g. 22 for 10.00pm)
  • mm - minutes (e.g. 55)
  • ss - seconds (e.g. 03)
  • TZD - Time Zone Designator (Z denotes Zulu, also known as Greenwich Mean Time)

❮ Tag HTML <ins>