document.getElementsByAttribute("xlink:href",id);
我收到错误:
Uncaught TypeError: document.getElementsByAttribute is not a function
我不明白出了什么问题?它不是镀铬标准功能吗?
最佳答案
从documentation开始:
原文链接:/js/429274.htmlNote that this method is only available on XUL elements; it is not part of the W3C DOM.
用这个:
document.querySelectorAll("[xlink|href='"+id+"']");