我使用HtmlAgilityPack
来解析html文档。在文档中,我想获取所选节点的属性。例如,下面是文件结构:
<table ########">
<tr id="tableHeaderColor">
<th scope="col">Something</th>
<th scope="col">Something</th>
<th scope="col">Something</th>
<th scope="col">Something</th>
</tr>
<tr valign="top">
<td>Something</td>
<td>Something</td>
<td>Something</td>
<td>Something</td>
</tr>
我想查找/tr
节点是id
还是valign
。
答案 0 :(得分:0)
如果您对要查找的特定节点有引用,则会有一个名为Attributes
的集合。
var valign = node.Attributes["valign"].Value