我有一个数据表,它在前两个列中呈现两个图像按钮
<tr>
<td>Button 1
<td>Button 2
</tr>
<tr>
<td>Value<td/>
我正在尝试使用以下方法捕获相应点击的值:
$('[id$=releaseMessage]').click(function () {
alert($('td:eq(2)', this).html());
});
$('[id$=deleteMessage]').click(function () {
alert($('td:eq(2)', this).html());
});
每行的值都不同,所以我可以使用这样的东西:
tr:eq(0) td:first-child
因为这将始终返回第一个 td 值。