此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。
Element:getAttributeNodeNS() 方法
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2015年7月.
Element 实例的getAttributeNodeNS() 方法返回元素的指定命名空间的Attr 节点。
如果你需要限定命名空间的属性的实例属性,此方法会很有用。如果你只需要限定命名空间的属性的值,你可以改用getAttributeNS() 方法。
如果你需要 HTML 文档中的元素的Attr 节点,并且属性没有限定命名空间,那么可以改用getAttributeNode() 方法。
In this article
语法
js
getAttributeNodeNS(namespace, nodeName)参数
namespace:指定属性的命名空间的字符串。nodeName:指定属性名称的字符串。
返回值
指定属性的节点。
备注
getAttributeNodeNS 相比getAttributeNode 更加具体,因为它允许你指定属于特定命名空间的属性。对应的 setter 方法是setAttributeNodeNS。
规范
| Specification |
|---|
| DOM> # dom-element-getattributenodens> |