<table id="mytable" runat="server">
<tr class="csstablelisttd">
<td>
08:00
</td>
<td>
00
</td>
<td>
<span></span>
</td>
</tr>
for(int i = 0; i < mytable.Rows.Count - 1; i++)
{
for(int j = 0; j < mytable.Rows[i].Cells.Count; j++)
{
}
}
if(mytable.Rows[i].Cells[j].Attributes["class"] != null && mytable.Rows[i].Cells[j].Attributes["class"].Equals("csstdgreen"))
{
//For finding class of td.I use above code
}
我必须在表中找到 span 标签,并且必须在 span 标签中添加文本。这是在表的 td 中。我不想应用 runat="server" 因为我的表中有 50 个跨度。我正在像这样循环遍历表格。我在谷歌上搜索了很多,但在 c# 中没有找到任何东西。 我必须在数据库中的 span 标签中输入值 注意:没有 Javascript 或 Jquery!