aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/html/element/strike/index.html
blob: c9481e3c8869a7ef875e6ff817bfbafcf3127c05 (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
---
title: <strike>
slug: Web/HTML/Element/strike
translation_of: Web/HTML/Element/strike
---
<div>{{ Obsolete_header() }}</div>

<h2 id="Summary">Summary</h2>

<p><strong>HTML <code>&lt;strike&gt;</code> 元素</strong>(或者 HTML 删除线元素)在文本上放置删除线。</p>

<div class="note">
<p><strong>使用注解</strong>:这个元素在 HTML4 和 XHTML1 中废除了,并且在 HTML5 中移除。如果语义上合适的话(也就是如果表示删除的内容),使用 {{ HTMLElement("del") }} 来代替。在所有其它的情况中,使用 {{ HTMLElement("s") }}</p>
</div>

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

<p>这个元素仅仅包含 <a href="https://developer.mozilla.org/en-US/docs/HTML/Global_attributes">全局属性</a></p>

<h2 id="DOM_接口">DOM 接口</h2>

<p>这个元素实现了 {{domxref('HTMLElement')}} 接口。</p>

<div class="note">
<p><strong>实现注解:</strong>直到 Gecko 1.9.2(包含),Firefox 为这个元素实现了  {{domxref('HTMLSpanElement')}} 接口。</p>
</div>

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

<pre class="brush:html">&lt;strike&gt;Today's Special: Salmon&lt;/strike&gt; SOLD OUT&lt;br /&gt;
&lt;s&gt;Today's Special: Salmon&lt;/s&gt; SOLD OUT
</pre>

<p id="Result">代码结果为:</p>

<p><s>Today's Special: Salmon</s> SOLD OUT<br>
 <s>Today's Special: Salmon</s> SOLD OUT</p>

<h2 id="另见">另见</h2>

<ul>
 <li>{{ HTMLElement("s") }} 元素。</li>
 <li>{{ HTMLElement("del") }} 元素应该在数据已经删除的情况下使用。</li>
 <li>CSS {{ cssxref("text-decoration") }} 属性可以用于使用下划线来装饰文本。</li>
</ul>

<div>{{ HTMLRef }}</div>