我正在尝试根据内联数据属性搜索多个数据结果。但是,我只能弄清楚如何搜索单个数据属性而不是全部。我将如何做到这一点?
我有什么:http: //jsfiddle.net/9SMZC/2/
$("input[type=text]").keyup(function () {
var filter = $(this).val();
$("a").each(function () {
if ($(this).attr("data-event-name").search(new RegExp(filter, "i")) < 0) {
$(this).hide();
} else {
$(this).show();
matches++;
}
});
});
提前致谢!