表示機能と非表示機能を備えた検索フィルターを作成しようとしています。しかし、私は、それぞれの機能の後に次に何をすべきかわからない。 imgタグの下で私の "alt"属性を使って検索を実際に行います。.eachを使用したJquery検索フィルター
// Search filter should be keypress with alt attribute. *** .each
var $pictureList = $("#gallery img");
$("#search").onkeypress(function(event){
$pictureList.each(function(){
//??? need to go through each "alt" attribute for search filter
});
});
ありがとうございました!