我有一个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中已完成项目的数量。请帮忙。
感谢。