如何替换链接所在且已被点击的单元格内容?
<table>
<tr>
<td>link here</td>
<td>link here</td>
<td>link here</td>
</tr>
</table>
例如,单击第二个单元格中的链接应将第二个单元格内容替换为test
第三个链接替换第三个单元格,依此类推。基本上替换链接所在的单元格内容。
如何替换链接所在且已被点击的单元格内容?
<table>
<tr>
<td>link here</td>
<td>link here</td>
<td>link here</td>
</tr>
</table>
例如,单击第二个单元格中的链接应将第二个单元格内容替换为test
第三个链接替换第三个单元格,依此类推。基本上替换链接所在的单元格内容。
像这样的东西:
$('table').on('click', 'a', function(event) {
event.preventDefault();
$(this).closest('td').html('test');
});
我认为这就是你想要的:
$("td").click(function() {
$(this).text("test");
});
您必须将 jQuery click 事件分配给每个单元格:
$(document).ready(function {
$("td").click(function() {
$(this).html("test"); // Change the clicked cell content for test
});
});