aboutsummaryrefslogtreecommitdiff
path: root/files/zh-cn/web/api/element/id/index.html
blob: 7bebb2d2eba28b7b33b6c9ccdd7e20072b4aaf07 (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
---
title: Element.id
slug: Web/API/Element/id
tags:
  - API
  - DOM
  - 元素
  - 参考
  - 属性
translation_of: Web/API/Element/id
---
<div>{{ ApiRef("DOM") }}</div>

<p>{{domxref("Element")}} 接口的 <strong><code>id</code></strong> 属性表示元素的标识符,与全局属性 <code><strong><a href="/en-US/docs/Web/HTML/Global_attributes/id">id</a></strong></code> 对应。</p>

<p>同一文档中,若 <code>id</code> 的值不是空字符串 <code>""</code>,便必须是独特的;也就是说,不同元素的 ID 必须是不同的。</p>

<p>这有助于让常用的 {{domxref("document.getElementById", "getElementById")}} 方法通过 <code>id</code> 的值找到对应的单个元素。另外,在 <a href="/zh-CN/docs/Web/CSS">CSS</a> 中,ID 可作为选择器使用,详见:<a href="https://developer.mozilla.org/en-US/docs/Web/CSS/ID_selectors">ID 选择器</a></p>

<div class="note">
<p><strong>注意:</strong>虽然 ID 是区分大小写的, 但是不应该同时使用仅大小写有不同的 ID  值。</p>
</div>

<h2 id="语法">语法</h2>

<pre class="syntaxbox">var <em>idStr</em> = <em>element</em>.id; // Get the id
<em>element</em>.id = <em>idStr</em>; // Set the id
</pre>

<ul>
 <li><code>idStr</code>,元素的 ID 属性值。</li>
</ul>

<h2 id="规范">规范</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('DOM WHATWG', '#dom-element-id', 'id')}}</td>
   <td>{{Spec2('DOM WHATWG')}}</td>
   <td>No change from {{SpecName('DOM2 HTML')}}.</td>
  </tr>
  <tr>
   <td>{{SpecName('DOM2 HTML', 'html.html#ID-63534901', 'id')}}</td>
   <td>{{Spec2('DOM2 HTML')}}</td>
   <td>No change from {{SpecName('DOM1')}}.</td>
  </tr>
  <tr>
   <td>{{SpecName('DOM1', 'level-one-html.html#ID-63534901', 'id')}}</td>
   <td>{{Spec2('DOM1')}}</td>
   <td>Initial definition.</td>
  </tr>
 </tbody>
</table>

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



<p>{{Compat("api.Element.id")}}</p>

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

<ul>
 <li>DOM 全局属性 <a href="/zh-CN/docs/Web/HTML/Global_attributes/id"><strong>id</strong></a></li>
</ul>