サンプルのhtmlコードがあります:
<div class="category">
<div class="product">
<!-- some product info -->
<input type="text" value="0" /> <!-- it is quantity -->
</div>
<!-- ... other products -->
</div>
<!-- ... other categories -->
そのため、jQuery を使用してすべてのカテゴリを取得する必要があります。ここで、少なくとも 1 つの製品の数量が正です。
次のようになります (C# の場合)
var filteredCategories = categories.Where(c => c.Products.Any(p => p.Quantity !=0));
jQueryを使用してそれを行う方法は?