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
|
---
title: <mark>
slug: Web/HTML/Element/mark
translation_of: Web/HTML/Element/mark
---
<h2 id="概要">概要</h2>
<p>HTML 标记文本元素 (< Mark >) 表示为引用或符号目的而标记或突出显示的文本,这是由于标记的段落在封闭上下文中的相关性或重要性造成的。</p>
<p>这个<em> HTML mark </em>标签代表突出显示的文字,例如可以为了<strong>标记</strong>特定上下文中的文本而使用这个标签<strong><font color="#252525" face="Microsoft YaHei"><span style="font-size: 12px; line-height: 19.2000007629395px;">.</span></font></strong> 举个例子,它可以用来显示搜索引擎搜索后关键词</p>
<ul class="htmlelt">
<li><dfn>内容分类</dfn> <a href="/en-US/docs/HTML/Content_categories#Flow_content" title="HTML/Content categories#Flow content">Flow content</a>, <a href="/en-US/docs/HTML/Content_categories#Phrasing_content" title="HTML/Content categories#Phrasing content">phrasing content</a>, palpable content.</li>
<li><dfn>允许的内容</dfn> <a href="/en-US/docs/HTML/Content_categories#Phrasing_content" title="HTML/Content_categories#Phrasing_content">Phrasing content</a>.</li>
<li><dfn>标签省略</dfn> {{no_tag_omission}}</li>
<li><dfn>允许的父元素</dfn>任何接受<a href="/en-US/docs/HTML/Content_categories#Phrasing_content" title="HTML/Content_categories#Phrasing_content">phrasing content</a> 的元素。</li>
<li><dfn>DOM 接口</dfn> {{domxref("HTMLElement")}}</li>
</ul>
<h2 id="属性">属性</h2>
<p><span style="line-height: 21px;">这个元素只包含了 </span><a href="https://developer.mozilla.org/en-US/docs/HTML/Global_attributes">全局属性</a><span style="line-height: 21px;">.</span></p>
<h2 id="使用说明">使用说明</h2>
<p><code><mark></code>元素的典型使用场景包括:<br>
<em></em></p>
<ul>
<li>当用在引用({{HTMLElement("q")}}、{{HTMLElement("blockquote")}})中时,通常用来显示有特殊意义的文本,但不在原材料中标记出来;或者是用来显示特殊审查的材料,即使原作者不认为它特别重要。</li>
<li>另外,<mark>元素还用来显示与用户当前活动相关的一部分文档内容。例如,它可能被用于显示匹配搜索结果中的单词。</li>
<li>不要为了语法高亮而用 <code><mark></code> 元素; 你应该用 <em>{{HTMLElement("strong")}}</em> 元素结合适当的 CSS 来实现这个目的(语法高亮)。</li>
</ul>
<div class="blockIndicator note">
<p>不要把 <code><mark></code> 元素和 {{HTMLElement("strong")}} 元素搞混淆;{{HTMLElement("strong")}} 元素用来表示文本在上下文的重要性的, 而 <code><mark></code> 元素是用来表示上下文的关联性的。</p>
</div>
<h2 id="例子">例子</h2>
<pre class="brush: html"><p>&lt;mark&gt; 元素用于 <mark>高亮</mark> 文本</p>
</pre>
<h3 id="结果">结果</h3>
<p><mark> 元素用于 <mark>高亮</mark> 文本</p>
<h2 id="Specifications" name="Specifications">说明</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Specification</th>
<th scope="col">Status</th>
<th scope="col">Comment</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('HTML WHATWG', 'text-level-semantics.html#the-mark-element', '<mark>')}}</td>
<td>{{Spec2('HTML WHATWG')}}</td>
<td></td>
</tr>
<tr>
<td>{{SpecName('HTML5 W3C', 'text-level-semantics.html#the-mark-element', '<mark>')}}</td>
<td>{{Spec2('HTML5 W3C')}}</td>
<td></td>
</tr>
</tbody>
</table>
<h2 id="浏览器兼容性">浏览器兼容性</h2>
{{Compat("html.elements.mark")}}
<h2 id="参见">参见</h2>
<ul>
<li>Other <a href="/en-US/docs/HTML/Text-level_semantics_elements" title="HTML/Text-level semantics elements">text-level semantics elements</a>: {{HTMLElement("a")}}, {{HTMLElement("em")}}, {{HTMLElement("strong")}}, {{HTMLElement("cite")}}, {{HTMLElement("q")}}, {{HTMLElement("dfn")}}, {{HTMLElement("abbr")}}, {{HTMLElement("time")}}, {{HTMLElement("code")}}, {{HTMLElement("var")}}, {{HTMLElement("samp")}}, {{HTMLElement("kbd")}}, {{HTMLElement("sub")}}, {{HTMLElement("sup")}}, {{HTMLElement("i")}}, {{HTMLElement("b")}}, {{HTMLElement("mark")}}, {{HTMLElement("ruby")}}, {{HTMLElement("rp")}}, {{HTMLElement("rt")}}, {{HTMLElement("bdo")}}, {{HTMLElement("span")}}, {{HTMLElement("br")}}, {{HTMLElement("wbr")}}.</li>
</ul>
<p>{{HTMLRef}}</p>
|