0
<tr>
    <td>Full File</td>
    <td><span class="badge">5</span></td>
    <td><div class="progress"><div class="bar Full"></div></div></td>
    <td><span class="label ">Waiting</span></td>
</tr>

大家好!
简明扼要:

我想用jquery来定位'span.label'知道类'.Full'

4

3 回答 3

2

尝试:

$(this).closest('td').next().find('span.label');

或者

$(this).closest('tr').find('span.label');
于 2013-10-29T14:06:58.057 回答
1

你可以这样做:

$('.Full').closest('tr').find('.label');
  • 首先获取FulljQuery 对象。
  • 接下来转到closesttr元素。
  • 然后使用.find()go to the specified span with class aslabel

编辑

对于专门针对类label使用的跨度:

$('.Full').closest('tr').find('span.label');
于 2013-10-29T14:08:36.090 回答
0

尝试

$('div.Full').closest('td').next('td').children('span.label');

.closest()

.children().find()

于 2013-10-29T14:07:27.993 回答