Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试查找<tr>表中不透明度为 0 的所有元素。
<tr>
到目前为止,我已经尝试过:
var trHeight = table.find('tr:not(:transparent)').length;
但这似乎改变了我的CSS。
有没有类似的东西:
var trHeight = table.find('tr').css('opacity !=0 ').length;
谢谢你。
尝试使用过滤器,
var trHeight = table.find('tr').filter(function () { return $(this).css('opacity') > 0; }).length;
http://jsfiddle.net/YaxEa/1/