Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Element.id

概述

获取和设置一个元素的标识符(id属性).

语法

var idStr = element.id;
element.id = idStr;

idStr 就是该元素的id属性.

备注

在一个文档中,ID值必须是唯一的. getElementById 方法可以通过id值来找到对应的那个元素.

在一些文档中(比如HTML, XUL, 和 SVG文档), 一个元素的id dom属性(property)可以通过该元素的HTML标签属性(attribute)来设置: <div id="table-cell2">.

需要注意的是,在一个自定义的XML文档中,如果你没有在对应的DOCTYPE文件中正确指定id属性的类型,你不能像上面一样指定id属性.

其他用到id的地方还有,在CSS文件中,用来查询元素的id选择器.

ID虽然是区分大小写的, 不过不应该使用两个仅大小写不同的id (查看class和id名区分大小写).

规范

Specification Status Comment
Document Object Model (DOM) Level 2 HTML Specification
id
Recommendation  

 

文档标签和贡献者

 此页面的贡献者: teoli, AlexChao, ziyunfei, Mgjbot, Dewang
 最后编辑者: AlexChao,