HTML的<del>
标签表示一些被从文档中删除的文字内容。比如可以在需要显示修改记录或者源代码差异的情况使用这个标签。{{HTMLElement("ins")}}标签的作用恰恰于此相反:表示文档中添加的内容。
这个标签通常(但不一定要)在文字上显示删除线。
内容分类 | 短语元素 或者 流式元素 。 |
---|---|
允许的内容 | 透明内容模型 |
标签省略 | {{no_tag_omission}} |
允许的父元素 | 任意短语元素 |
允许的 ARIA 角色 | 任意 |
DOM 接口 | {{domxref("HTMLModElement")}} |
这个标签包含全局属性。
<p><del>This text has been deleted</del>, here is the rest of the paragraph.</p> <del ><p >This paragraph has been deleted.</p ></del >
This text has been deleted, here is the rest of the paragraph.
This paragraph has been deleted.
规范 | 状态 | 评论 |
---|---|---|
{{SpecName('HTML WHATWG', 'edits.html#the-del-element', '<del>')}} | {{Spec2('HTML WHATWG')}} | |
{{SpecName('HTML5 W3C', 'edits.html#the-del-element', '<del>')}} | {{Spec2('HTML5 W3C')}} | |
{{SpecName('HTML4.01', 'struct/text.html#h-9.4', '<del>')}} | {{Spec2('HTML4.01')}} |
{{Compat("html.elements.del")}}