我想知道如何在脚本中添加其他过滤器?因为现在它只过滤国家,我想过滤掉其他内容:
jQuery(function($) {
$(document).on('click', '.filters a', function() {
var filter = $(this).attr('data-country');
if ( filter == 'all' ) {
$('.items a').show();
} else {
$('.items a').hide();
$('.items a[data-country="' + filter + '"]').show();
}
return false;
});
});