【发布时间】:2016-05-26 21:07:12
【问题描述】:
我有这张桌子。
<tr>
<td style="padding-left: 25pt;"><font style="background-color: white" color="black"> Hello</font></td>
<td style="padding-left: 25pt;"><font style="background-color: white" color="black">Bye</font></td>
</tr>
但我想在最后添加一个额外的 td 元素,所以它看起来像这样:
<tr>
<td style="padding-left: 25pt;"><font style="background-color: white" color="black"> Hello</font></td>
<td style="padding-left: 25pt;"><font style="background-color: white" color="black">Bye</font></td>
<td>1</td>
</tr>
我正在使用 htmlAgilityPack,但我看过的在线示例并没有完全帮助。
【问题讨论】:
标签: c# html html-agility-pack