使用 JQuery,我需要知道用户点击的是链接还是第三列,并且需要获取第一列中变量的值。我该怎么做呢?
我的html:
<div id="test">
<table id="tablex" cellpadding="0" cellspacing="0" border="0" class="display">
<thead>
<tr>
<th>Cod</th>
<th>Name completo</th>
<th> </th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>John Foster 1</td>
<td><img entity_id="1" class="image-selector" src='imagens/grid_cancel.png' title='' /></td>
</tr>
</tbody>
</table>
我的 jQuery:
$("#tablex tbody").on("click", "td", function(event){
alert($(this).text());
});