我需要从下一个表中获取 id 或类,例如,当我单击蓝色方块中的任何 div 时,从红色方块的表中获取 id 或类。
如果我使用这个:
$('div').click(function() {
console.log($(this).next().find('table').attr('id));
});
但不起作用!
代码
<div id="statusServ">
Status ::
<div id="todosTicket" class="colorstatus">Todos</div>
<div id="pendiente" class="colorpendiente colorstatus">Pendiente</div>
<div id="atencion" class="coloratencion colorstatus">En Atención</div>
<div id="concluido" class="colorconcluido colorstatus">Concluido</div>
<div id="cerrado" class="colorcerrado colorstatus">Cerrado</div> | Acciones ::
</div>
<i>Para visualizar los detalles del ticket, presione sobre la fila deseada.</i>
<table cellspacing="1" id="rBuscarServicio" class="tableResultsSearch tSeguimiento" name="rBuscarServicio">
<thead>
<tr>
<th>#TKMA</th>
<th>CLIENTE</th>
<th>EMPRESA</th>
<th>ING. ASIGNADO</th>
<th>FECHA CREACIÓN</th>
<th>OBSERVACIONES</th>
<th style="display:none;">STATUS</th>
</tr>
</thead>
<tbody>
</tbody>
</table>