有没有一种简单直接的方法来根据data
属性选择元素?例如,选择所有具有名为的数据属性的锚点,customerID
其值为22
。
我有点犹豫是否使用rel
或其他属性来存储此类信息,但我发现根据其中存储的数据选择元素要困难得多。
有没有一种简单直接的方法来根据data
属性选择元素?例如,选择所有具有名为的数据属性的锚点,customerID
其值为22
。
我有点犹豫是否使用rel
或其他属性来存储此类信息,但我发现根据其中存储的数据选择元素要困难得多。
$('*[data-customerID="22"]');
您应该可以省略*
,但如果我没记错的话,根据您使用的 jQuery 版本,这可能会产生错误的结果。
请注意,为了与 Selectors API () 兼容,在这种情况下不能省略属性值 ( )document.querySelector{,all}
周围的引号。22
此外,如果您在 jQuery 脚本中大量使用数据属性,您可能需要考虑使用HTML5 自定义数据属性插件。这允许您使用 编写更具可读性的代码.dataAttr('foo')
,并在缩小后导致文件大小更小(与使用相比.attr('data-foo')
)。
对于使用谷歌搜索并希望使用数据属性进行选择的更一般规则的人:
$("[data-test]")
将选择仅具有数据属性的任何元素(无论属性的值如何)。包含:
<div data-test=value>attributes with values</div>
<div data-test>attributes without values</div>
$('[data-test~="foo"]')
将选择 data 属性包含 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>
Using$('[data-whatever="myvalue"]')
将选择具有 html 属性的任何内容,但在较新的 jQueries 中,似乎如果您使用$(...).data(...)
附加数据,它会使用一些神奇的浏览器东西并且不会影响 html,因此不会如上一个答案.find
所示被发现。
验证(用 1.7.2+ 测试)(另见小提琴):( 更新更完整)
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"]');
我还没有看到没有 jQuery 的 JavaScript 答案。希望它可以帮助某人。
var elements = document.querySelectorAll('[data-customerID="22"]');
elements[0].innerHTML = 'it worked!';
<a data-customerID='22'>test</a>
要选择具有 data 属性的所有锚点data-customerID==22
,您应该包含a
以将搜索范围限制为仅该元素类型。当页面上有很多元素时,以大循环或高频率进行数据属性搜索可能会导致性能问题。
$('a[data-customerID="22"]');
获取元素的NodeList
var elem = document.querySelectorAll('[data-id="container"]')
html:<div data-id="container"></div>
获取第一个元素
var firstElem = document.querySelector('[id="container"]')
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>
基于多个 (OR) 数据值获取元素
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://"]')
像这样的结构:在Safari 8.0$('[data-XXX=111]')
中不起作用。
如果您以这种方式设置数据属性:$('div').data('XXX', 111)
,则仅当您直接在 DOM 中设置数据属性时才有效$('div').attr('data-XXX', 111)
:
我认为这是因为 jQuery 团队优化了垃圾收集器,以防止内存泄漏和对每个更改数据属性的 DOM 重建的繁重操作。
通过 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'});
});
为了在 Chrome 中工作,该值不能有另一对引号。
例如,它只能像这样工作:
$('a[data-customerID=22]');
有时需要根据元素是否以编程方式(也不是通过 dom 属性)附加数据项来过滤元素:
$el.filter(function(i, x) { return $(x).data('foo-bar'); }).doSomething();
以上工作,但不是很可读。更好的方法是使用伪选择器来测试这种事情:
$.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";
};
});
现在我们可以将原始语句重构为更流畅和可读的内容:
$el.filter(":hasData('foo-bar')").doSomething();
只需使用“生活标准”的某些功能来完成所有答案 - 到现在(在 html5 时代),可以在没有 3rd 方库的情况下做到这一点:
document.querySelector('[data-answer="42"],[type="submit"]')
document.querySelectorAll('[data-answer="42"],[type="submit"]')
[data-answer="42"],[type="submit"]
[data-answer]
或input[type]