javascript – getElementsByAttribute()不是函数

前端之家收集整理的这篇文章主要介绍了javascript – getElementsByAttribute()不是函数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有以下代码获取元素的属性

document.getElementsByAttribute("xlink:href",id);

我收到错误

Uncaught TypeError: document.getElementsByAttribute is not a function

我不明白出了什么问题?它不是镀铬标准功能吗?

最佳答案
documentation开始:

Note that this method is only available on XUL elements; it is not part of the W3C DOM.

用这个:

document.querySelectorAll("[xlink|href='"+id+"']");
原文链接:/js/429274.html

猜你在找的JavaScript相关文章