有没有办法通过javascript或jQuery通过其中一个数据属性获取整个元素?假设我在这样的网站上有某个链接
<a href="http://www.google.com/" data-source="google">Google</a>
由于上面的链接没有任何id或类,我无法抓住它。我需要通过data-source
属性来获取它。所以说我可以以某种方式使用jQuery获取名称为data-source
的属性的值。我该怎么做?
答案 0 :(得分:2)
$('[data-source="google"]')
这将选择data-source
属性等于google
的所有元素。