aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/html/element/ins/index.html
blob: ca5a64966389a0ecfb656084834a0cbe6a734f50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
---
title: <ins>
slug: Web/HTML/Element/ins
tags:
  - Element
  - HTML
  - HTML edits
  - Reference
  - Web
translation_of: Web/HTML/Element/ins
---
<h2 id="简介">简介</h2>

<p>{{HTMLRef}}<br>
 <strong>HTML <code>&lt;ins&gt;</code> 元素</strong>定义已经被插入文档中的文本。</p>

<p> </p>

<p>{{EmbedInteractiveExample("pages/tabbed/ins.html", "tabbed-standard")}}</p>

<p> </p>

<ul class="htmlelt">
 <li><dfn><a href="/en-US/docs/HTML/Content_categories" title="HTML/Content_categories">内容</a>分类</dfn><a href="/zh-CN/docs/Web/Guide/HTML/Content_categories#短语元素(Phrasing_content)">短语元素</a> 或者 <a href="/zh-CN/docs/Web/Guide/HTML/Content_categories#流式元素(Flow_content)">流式元素</a> 。</li>
 <li><dfn>允许内容</dfn> <a href="/zh-CN/docs/Web/Guide/HTML/Content_categories#透明内容模型(Transparent_content_model)">透明内容模型</a></li>
 <li><dfn>标签闭合</dfn> {{no_tag_omission}}</li>
 <li><dfn>允许的父级标签</dfn>任意<a href="/zh-CN/docs/Web/Guide/HTML/Content_categories#短语元素(Phrasing_content)">短语元素</a></li>
 <li><dfn>允许的 ARIA 角色</dfn>任意</li>
 <li><dfn>DOM 接口</dfn> {{domxref("HTMLModElement")}}</li>
</ul>

<h2 id="属性">属性</h2>

<p><span style="line-height: 21px;">该元素支持所有 <a href="https://developer.mozilla.org/en-US/docs/HTML/Global_attributes">全局特性</a>,除此以外还支持下列属性:</span></p>

<dl>
 <dt>{{htmlattrdef("cite")}}</dt>
 <dd>cite 属性的值指向一个文档的 URL,该文档解释了文本被插入或修改的原因。(目前该属性还没有被主流浏览器支持)</dd>
 <dt>{{htmlattrdef("datetime")}}</dt>
 <dd>该特性指示的此修改发生的时间和日期,并且该特性的值必须是<a href="http://www.w3.org/TR/2011/WD-html5-20110525/common-microsyntaxes.html#valid-date-string-with-optional-time">一个有效的日期或者时间字符串</a>。如果该值不能被解析为日期或者时间,则该元素不具有相关联的时间标记。</dd>
</dl>

<h2 id="示例">示例</h2>

<pre class="brush: html">&lt;ins&gt;这一段文本是新插入至文档的。&lt;/ins&gt;</pre>

<h3 id="结果">结果</h3>

<p><ins>这一段文本是新插入至文档的。</ins></p>

<h2 id="Specifications" name="Specifications">规范</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">规范</th>
   <th scope="col">状态</th>
   <th scope="col">评论</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{SpecName('HTML WHATWG', 'edits.html#the-ins-element', '&lt;ins&gt;')}}</td>
   <td>{{Spec2('HTML WHATWG')}}</td>
   <td> </td>
  </tr>
  <tr>
   <td>{{SpecName('HTML5 W3C', 'edits.html#the-ins-element', '&lt;ins&gt;')}}</td>
   <td>{{Spec2('HTML5 W3C')}}</td>
   <td> </td>
  </tr>
  <tr>
   <td>{{SpecName('HTML4.01', 'struct/text.html#h-9.4', '&lt;ins&gt;')}}</td>
   <td>{{Spec2('HTML4.01')}}</td>
   <td> </td>
  </tr>
 </tbody>
</table>

<h2 id="浏览器兼容性">浏览器兼容性</h2>

<p> </p>

<p>{{Compat("html.elements.ins")}}</p>

<p> </p>

<h2 id="参阅">参阅</h2>

<ul>
 <li>{{HTMLElement("del")}} </li>
</ul>

<div> </div>