我在同一页面中有几个这样的表:
<table>
<tr class="head">
<th>
Brand
</th>
</tr>
<tr class="attributeVal">
<td>
text
</td>
</tr>
<tr class="attributeVal">
<td>
text
</td>
</tr>
....
</table>
并且在页面加载中
$('.attributeVal').hide();
这个想法是当“head”鼠标悬停时显示同一个表中的所有“attributeVal”类。我做 $('.attributeVal') 因为它会影响页面上的所有 'attributeVal'。
此外,一旦我离开该表,当前表中的所有“attributeVal”都将隐藏()。
谢谢。