目录

HTML DOM attributes


属性对象

在 HTML DOM 中,属性对象代表一个HTML 属性

HTML 属性始终属于HTML 元素


命名节点映射

命名节点映射是元素属性的类似数组的无序集合。

换句话说:NamedNodeMap 是一个列表属性对象

NamedNodeMap 有一个长度返回节点数的属性。

可以通过名称或索引号来访问节点。索引从 0 开始。


属性属性

Property Description
isId Deprecated
name Returns an attribute's name
value Sets or returns an attribute's value
specified Returns true if the attribute is specified

NamedNodeMap 属性和方法

Method Description
getNamedItem() Returns an attribute node (by name) from a NamedNodeMap
item() Returns an attribute node (by index) from a NamedNodeMap
length Returns the number of attributes in a NamedNodeMap
removeNamedItem() Removes an attribute (node)
setNamedItem() Sets an attribute (node) by name