我有一个ID为tableDiv的表。我需要选择每个表头和数据单元格并动态重置它们的值,但是由于该表是使用ASP.NET(GridView)制成的,因此我无法设置头和数据元素的类。

我知道设置CSS我可以做到这一点:

vpw = $(window).width();

$('#tableDiv').css({ 'width': vpw * 0.95 });


但是我如何选择表中的标题和数据单元格呢?

最佳答案

对于标题:

$('#tableDiv th:nth-child(i)').html("New Value");


对于单元:

$('#tableDiv tr:nth-child(i) td:nth-child(i)').html("New Value");


i将是您要选择的子代号

10-07 21:33