ข้อมูลอ้างอิงHTML

HTML โดยตัวอักษร HTML ตามหมวดหมู่ รองรับ HTML Browser แอตทริบิวต์ HTML HTML Global Attributes เหตุการณ์ HTML HTML สี HTML Canvas HTML เสียง/วิดีโอ ชุดอักขระ HTML HTML Doctypes การเข้ารหัส URL HTML รหัสภาษา HTML รหัสประเทศ HTML ข้อความ HTTP วิธี HTTP ตัวแปลง PX เป็น EM แป้นพิมพ์ลัด


HTML <ins> แอตทริบิวต์วันที่และ เวลา

❮ แท็ก 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นี้ไม่มีเอฟเฟกต์ภาพในเว็บเบราว์เซอร์ทั่วไป แต่สามารถใช้โดยโปรแกรมอ่านหน้าจอ


ไวยากรณ์

<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>