0

如何替换链接所在且已被点击的单元格内容?

<table>
<tr>
   <td>link here</td>
   <td>link here</td>
   <td>link here</td>
</tr>
</table>

例如,单击第二个单元格中的链接应将第二个单元格内容替换为test第三个链接替换第三个单元格,依此类推。基本上替换链接所在的单元格内容。

4

3 回答 3

4

像这样的东西:

$('table').on('click', 'a', function(event) {
  event.preventDefault();
  $(this).closest('td').html('test');
});
于 2013-09-20T17:20:59.627 回答
0

我认为这就是你想要的:

$("td").click(function() {
    $(this).text("test");
});
于 2013-09-20T17:20:59.763 回答
0

您必须将 jQuery click 事件分配给每个单元格:

$(document).ready(function {
    $("td").click(function() {
        $(this).html("test"); // Change the clicked cell content for test
    });
});
于 2013-09-20T17:21:52.780 回答