我正在尝试更改表格最后一行的第一个单元格的值.
我的代码是:
$(document).ready(function() {
$('table.class tr:last td:first').html('Value');
});
但是这个代码什么都没改变,但是如果我没有使用:last和:首先他用’Value’填充所有表.我究竟做错了什么?
编辑:我的不好,代码工作正常,但只是最后一个类’class’的表.我需要它在那个类的每个表上做到这一点.任何的想法?
最佳答案
对于您的编辑,请使用:last-child和:first-child,因此它适用于每个table.class的最后一个tr中的最后一个td:
原文链接:https://www.f2er.com/jquery/428536.html$(document).ready(function() {
$('table.class tr:last-child td:first-child').html('Value');
});