我正在使用一个内存对象来存储近2,000个<tr>
元素。我从这个对象中选择某些元素,然后根据用户将它们添加到页面中
结构几乎是这样但有更多<td>
s:
<tr attribute1="value" attribute2="value">
<td class="class1">something</td>
<td class="class1">something</td>
<td class="class2">something</td>
<td>
<div class="class1">
somthing
</div>
</td>
</tr>
因此,我选择某些属性上的行,然后想要.show()
或.hide()
部分<td>
我尝试使用以下内容:
$(myObject).find("[attribute1=value]").clone().find(".class1").show();
但此语句仅返回满足类条件的<td>
或<div>
。
如果这些行不在内存中,我可以轻松使用一个完美的select语句:
$(".class1").hide/show()
如何在我的情况下实现这一目标