选择.button,其中data-source等于all

时间:2012-08-21 22:05:12

标签: jquery jquery-selectors attributes jquery-filter

正如问题标题中所述,我正在尝试选择a.button :data(source==all),但没有成功,这就是我尝试的内容

$('.button:data("source==all")').css('background', 'red');
$('#sources-list li').find('.button:data("source==all")').css('background', 'red');
$('#sources-list li').find('.button:data("source=all")').css('background', 'red');

还有其他想法吗?

2 个答案:

答案 0 :(得分:2)

我想你想要

$('a.button[data-source=all]').css('background', 'red');

答案 1 :(得分:2)

试试这个:

$('.button').filter(function(){
    return $(this).data('source') == "all"
}).css('background', 'red');