From 33058f2b292b3a581333bdfb21b8f671898c5060 Mon Sep 17 00:00:00 2001 From: Peter Bengtsson Date: Tue, 8 Dec 2020 14:40:17 -0500 Subject: initial commit --- files/zh-cn/web/api/element/id/index.html | 73 +++++++++++++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 files/zh-cn/web/api/element/id/index.html (limited to 'files/zh-cn/web/api/element/id/index.html') diff --git a/files/zh-cn/web/api/element/id/index.html b/files/zh-cn/web/api/element/id/index.html new file mode 100644 index 0000000000..7bebb2d2eb --- /dev/null +++ b/files/zh-cn/web/api/element/id/index.html @@ -0,0 +1,73 @@ +--- +title: Element.id +slug: Web/API/Element/id +tags: + - API + - DOM + - 元素 + - 参考 + - 属性 +translation_of: Web/API/Element/id +--- +
{{ ApiRef("DOM") }}
+ +

{{domxref("Element")}} 接口的 id 属性表示元素的标识符,与全局属性 id 对应。

+ +

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

+ +

这有助于让常用的 {{domxref("document.getElementById", "getElementById")}} 方法通过 id 的值找到对应的单个元素。另外,在 CSS 中,ID 可作为选择器使用,详见:ID 选择器

+ +
+

注意:虽然 ID 是区分大小写的, 但是不应该同时使用仅大小写有不同的 ID  值。

+
+ +

语法

+ +
var idStr = element.id; // Get the id
+element.id = idStr; // Set the id
+
+ + + +

规范

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
SpecificationStatusComment
{{SpecName('DOM WHATWG', '#dom-element-id', 'id')}}{{Spec2('DOM WHATWG')}}No change from {{SpecName('DOM2 HTML')}}.
{{SpecName('DOM2 HTML', 'html.html#ID-63534901', 'id')}}{{Spec2('DOM2 HTML')}}No change from {{SpecName('DOM1')}}.
{{SpecName('DOM1', 'level-one-html.html#ID-63534901', 'id')}}{{Spec2('DOM1')}}Initial definition.
+ +

浏览器兼容性

+ + + +

{{Compat("api.Element.id")}}

+ +

参见

+ + -- cgit v1.2.3-54-g00ecf