作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我想根据选中的复选框过滤我的数据。
我有 3 个复选框。
<input type="checkbox" name="shoes" value="shoes" class="storesCheckBox" />
<input type="checkbox" name="clothes" value="clothes" class="storesCheckBox" />
<input type="checkbox" name="sports" value="sports" class="storesCheckBox" />
我的商店数据是
// my stores
var stores = [
{
id: 1,
store: 'Store 1',
storeType: "shoes"
},
{
id: 2,
store: 'Store 2',
storeType: "clothes"
},
{
id: 3,
store: 'Store 3',
storeType: "sports"
},
{
id: 4,
store: 'Store 3',
storeSells: "shoes"
}
]
所以,如果我选中 shoes
复选框,我想根据 storeType shoes
过滤数据。所以我写了
var getStores = stores.filter(function (store) {
return store.storeType === 'shoes';
});
但是现在,如果我检查 clothes
并且 shoes
已经被检查。我想过滤鞋子+衣服
数据。如果我再次取消选中 shoes
,我只想过滤衣服数据。它可以是任意数量的复选框,具体取决于商店类型。你能帮我解决这个问题吗?
最佳答案
你可以试试这个:
var storeTypesSelected; //array of the types checked
var getStores = stores.filter(function (store) {
return storeTypesSelected.indexOf(store.storeType) > -1;
});
关于javascript - 基于复选框过滤对象数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58796024/
我是一名优秀的程序员,十分优秀!