HTMl编辑元素

前端
HTML
作者

yangjh

发布日期

October 29, 2021

ins

Ins 元素表示文档的追加内容。datetime 属性用来说明追加内容的时间。

del

Del 元素表示文档中的移除内容。datetime 属性用来说明移除内容的时间。

<h1>To Do</h1>
<ul>
 <li>Empty the dishwasher</li>
 <li><ins datetime="2009-10-11T01:25-07:00">Watch Walter Lewin's lectures</ins></li>
 <li><del datetime="2009-10-10T23:38-07:00">Download more tracks</del></li>
 <li>Buy a printer</li>
</ul>

扩展阅读资料

  1. https://www.w3.org/TR/2017/REC-html52-20171214/edits.html#edits
回到顶部