HTML DOM attributes 属性
JavaScript基础 2022-06-08 11:28:31小码哥的IT人生shichen
HTML DOM attributes 属性
实例
获得元素属性的集合:
document.getElementsByTagName("BUTTON")[0].attributes;
完整实例:
<!DOCTYPE html>
<html>
<body>
<p>点击按钮来查看 button 元素拥有多少属性。</p>
<button id="myBtn" onclick="myFunction()">试一下</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("myBtn").attributes.length;
document.getElementById("demo").innerHTML = x;
}
</script>
<p>结果应该是 2(button 元素的 id 和 onclick 属性)。</p>
<p><b>注释:</b>Internet Explorer 8 以及更早的版本中,attributes 属性将返回元素所有可能的属性的集合,在本例中,会返回大于 2 的数字。</p>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
定义和用法
attributes 属性返回指定节点的属性集合,即 NamedNodeMap。
提示:您可以使用 length 属性来确定属性的数量,然后您就能够遍历所有的属性节点并提取您需要的信息。
浏览器支持
IE | Firefox | Chrome | Safari | Opera |
---|---|---|---|---|
所有主流浏览器都支持 attributes 属性。
注释:在 Internet Explorer 8 以及更早的版本中,attributes 属性会返回元素所有可能属性的集合。
语法
node.attributes
技术细节
返回值: | NamedNodeMap 对象,表示属性的集合。 |
DOM 版本 | Core Level 1 Node Object |