1
我試圖根據內聯數據屬性搜索多個數據結果。 但是,我只能弄清楚如何搜索單個數據屬性而不是全部。 我該如何做到這一點?如何篩選基於多個數據屬性的搜索結果
我有什麼:提前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++;
}
});
});
謝謝!
謝謝!這正是我一直在尋找的! – Andrew
你爲什麼在'〜data [key]'中使用'〜'? –