是否有一种简单直接的方法可以根据data
属性选择元素?例如,选择具有名为customerID
的数据属性且值为22
的所有锚点。
我对使用rel
或其他属性存储此类信息犹豫不决,但我发现根据存储在其中的数据选择元素要困难得多。
答案 0 :(得分:1352)
$('*[data-customerID="22"]');
您应该可以省略*
,但如果我没记错,根据您使用的jQuery版本,这可能会产生错误的结果。
请注意,为了与选择器API(document.querySelector{,all}
)兼容,请使用属性值(22
)may not be omitted in this case周围的引号。
此外,如果您在jQuery脚本中使用大量数据属性,则可能需要考虑使用HTML5 custom data attributes plugin。这允许您使用.dataAttr('foo')
编写更易读的代码,并在缩小后产生更小的文件大小(与使用.attr('data-foo')
相比)。
答案 1 :(得分:275)
对于人们谷歌搜索并想要更多关于使用数据属性进行选择的一般规则:
$("[data-test]")
将选择仅具有数据属性的任何元素(无论属性的值)。包括:
<div data-test=value>attributes with values</div>
<div data-test>attributes without values</div>
$('[data-test~="foo"]')
会选择数据属性包含 foo
的任何元素,但不一定要精确,例如:
<div data-test="foo">Exact Matches</div>
<div data-test="this has the word foo">Where the Attribute merely contains "foo"</div>
$('[data-test="the_exact_value"]')
将选择数据属性精确值为the_exact_value
的任何元素,例如:
<div data-test="the_exact_value">Exact Matches</div>
但不是
<div data-test="the_exact_value foo">This won't match</div>
答案 2 :(得分:131)
使用$('[data-whatever="myvalue"]')
将选择具有html属性的任何内容,但在较新的jQuery中,似乎如果使用$(...).data(...)
附加数据,它会使用一些神奇的浏览器并且不会影响html,因此.find
所示的var $container = $('<div><div id="item1"/><div id="item2"/></div>');
// add html attribute
var $item1 = $('#item1').attr('data-generated', true);
// add as data
var $item2 = $('#item2').data('generated', true);
// create item, add data attribute via jquery
var $item3 = $('<div />', {id: 'item3', data: { generated: 'true' }, text: 'Item 3' });
$container.append($item3);
// create item, "manually" add data attribute
var $item4 = $('<div id="item4" data-generated="true">Item 4</div>');
$container.append($item4);
// only returns $item1 and $item4
var $result = $container.find('[data-generated="true"]');
未找到。
验证(使用1.7.2+测试)(另请参阅previous answer):(已更新为更完整)
{{1}}
答案 3 :(得分:61)
要选择具有数据属性data-customerID==22
的所有锚点,您应该包含a
以将搜索范围限制为仅该元素类型。当页面上有许多元素时,以大循环或高频率进行数据属性搜索可能会导致性能问题。
$('a[data-customerID="22"]');
答案 4 :(得分:52)
没有jQuery,我没有看过JavaScript的答案。希望它可以帮助某人。
var elements = document.querySelectorAll('[data-customerID="22"]');
elements[0].innerHTML = 'it worked!';
<a data-customerID='22'>test</a>
答案 5 :(得分:18)
获取元素的NodeList
var elem = document.querySelectorAll('[data-id="container"]')
html:<div data-id="container"></div>
获取第一个元素
var firstElem = document.querySelectorAll('[id="container"]')[0]
html:<div id="container"></div>
定位返回节点列表的节点集合
document.getElementById('footer').querySelectorAll('[data-id]')
HTML:
<div class="footer">
<div data-id="12"></div>
<div data-id="22"></div>
</div>
根据多个(或)数据值获取元素
document.querySelectorAll('[data-section="12"],[data-selection="20"]')
HTML:
<div data-selection="20"></div>
<div data-section="12"></div>
根据组合(AND)数据值获取元素
document.querySelectorAll('[data-prop1="12"][data-prop2="20"]')
HTML:
<div data-prop1="12" data-prop2="20"></div>
获取值以
开头的项目document.querySelectorAll('[href^="https://"]')
答案 6 :(得分:12)
通过Jquery filter()方法:
http://jsfiddle.net/9n4e1agn/1/
<强> HTML:强>
<button data-id='1'>One</button>
<button data-id='2'>Two</button>
<强> JavaScript的:强>
$(function() {
$('button').filter(function(){
return $(this).data("id") == 2}).css({background:'red'});
});
答案 7 :(得分:10)
这样的结构:$('[data-XXX=111]')
无效 Safari 8.0 。
如果您以这种方式设置数据属性:$('div').data('XXX', 111)
,只有在DOM中直接设置数据属性时才有效:$('div').attr('data-XXX', 111)
。
我认为这是因为jQuery团队优化了垃圾收集器,以防止在每个更改数据属性上重建DOM时出现内存泄漏和繁重操作。
答案 8 :(得分:9)
要在Chrome中使用此值,不的值必须有另一对引号。
它只能起作用,例如:
$('a[data-customerID=22]');
答案 9 :(得分:4)
It's sometimes desirable to filter elements based on whether they have data-items attached to them programmatically (aka not via dom-attributes):
$el.filter(function(i, x) { return $(x).data('foo-bar'); }).doSomething();
The above works but is not very readable. A better approach is to use a pseudo-selector for testing this sort of thing:
$.expr[":"].hasData = $.expr.createPseudo(function (arg) {
return function (domEl) {
var $el = $(domEl);
return $el.is("[" + ((arg.startsWith("data-") ? "" : "data-") + arg) + "]") || typeof ($el.data(arg)) !== "undefined";
};
});
Now we can refactor the original statement to something more fluent and readable:
$el.filter(":hasData('foo-bar')").doSomething();
答案 10 :(得分:0)
只需使用“生活标准”的某些功能来完成所有答案-到现在(在html5-ERA中),无需第三方库即可实现:
document.querySelector('[data-answer="42"],[type="submit"]')
document.querySelectorAll('[data-answer="42"],[type="submit"]')
[data-answer="42"],[type="submit"]
[data-answer]
或input[type]