HTML编辑元素
ins
Ins 元素表示文档的追加内容。datetime 属性用来说明追加内容的时间。
del
Del 元素表示文档中的移除内容。datetime 属性用来说明移除内容的时间。
1
2
3
4
5
6
7
| <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>
|
扩展阅读资料
- https://www.w3.org/TR/2017/REC-html52-20171214/edits.html#edits