我有一个 Jquery 函数,可以根据以下函数对待办事项列表中的已完成/未完成项目进行排序:
$('.sort').click(function(){
var _t = $(this);
$('.sort').removeClass('active');
$(this).addClass('active');
if (_t.hasClass('showall')) {
$('li.todo').show();
}
else if (_t.hasClass('complete')) {
$('li.todo').show();
$('li.todo').filter(function(){
return !!$(this).find('span.uncheck_box').length;
}).hide();
}
else if (_t.hasClass('incomplete')) {
$('li.todo').show();
$('li.todo').filter(function(){
return !!$(this).find('span.check_box').length;
}).hide();
}
我如何使用它来获取并显示 wordpress 中已完成项目的数量。请帮忙。
谢谢。