我有一个标识为tableDiv
的表格。我需要选择每个表头和数据单元并动态重置它们的值,但由于该表是用ASP.NET(GridView)创建的,所以我无法为头和数据元素设置类。
我知道设置CSS我可以这样做:
vpw = $(window).width();
$('#tableDiv').css({ 'width': vpw * 0.95 });
但是我如何选择表格中的标题和数据单元呢?
答案 0 :(得分:1)
对于标题:
$('#tableDiv th:nth-child(i)').html("New Value");
对于Cell:
$('#tableDiv tr:nth-child(i) td:nth-child(i)').html("New Value");
i
将是您要选择的子号码