0

我有一个带有单元格的表格,每个单元格都有一个数据类型。I have a filter bar, and when a filter option is selected I want to hide all the div's with the data-type that isn't the selected option.

这样做的最佳方法是什么?

4

2 回答 2

1

我猜您的 div 具有“数据类型”属性,因此您可以执行以下操作:

$('div[data-type!="yourvalue"]').hide();
于 2012-06-08T18:11:39.443 回答
1

让您的选择器首先获取属性设置为任何内容的所有元素,然后选择那些不匹配的元素value

$('div[data-type][data-type!="value"]').hide();
于 2012-06-08T18:25:57.187 回答