HTML <ins> datetime属性

❮HTML<ins>タグ

挿入されたテキストと、テキストが挿入された日時:

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

定義と使用法

このdatetime属性は、テキストが挿入/変更された日時を指定します。


ブラウザのサポート

Attribute
datetime Yes Yes Yes Yes Yes

注:このdatetime属性は、通常のWebブラウザーでは視覚効果はありませんが、スクリーンリーダーで使用できます。


構文

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

属性値

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)

❮HTML<ins>タグ