我有示例 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 获取所有类别,其中至少一种产品具有正数量。
看起来像这样(在 C# 中)
var filteredCategories = categories.Where(c => c.Products.Any(p => p.Quantity !=0));
如何使用 jQuery 做到这一点?