按特定数据属性获取元素

时间:2016-03-29 20:24:29

标签: javascript jquery attributes

有没有办法通过javascript或jQuery通过其中一个数据属性获取整个元素?假设我在这样的网站上有某个链接

<a href="http://www.google.com/" data-source="google">Google</a>

由于上面的链接没有任何id或类,我无法抓住它。我需要通过data-source属性来获取它。所以说我可以以某种方式使用jQuery获取名称为data-source的属性的值。我该怎么做?

1 个答案:

答案 0 :(得分:2)

$('[data-source="google"]')

这将选择data-source属性等于google的所有元素。

请参阅Attribute Equals Selector [name=”value”]