在 htmlagilitypack 中导航 dom
我迷失在 HTML DOM 中。使用 HTMLAgilityPack,我将如何导航埋藏在 DOM 深处的以下节点?
<table>
<tr>
<td> Name: </td>
<td> James </td>
</tr>
<tr>
<td> age: </td>
<td> 33 </td>
</tr>
</table>
I am lost in HTML DOM. Using HTMLAgilityPack, how would I navigate the following nodes buried deep inside the DOM?
<table>
<tr>
<td> Name: </td>
<td> James </td>
</tr>
<tr>
<td> age: </td>
<td> 33 </td>
</tr>
</table>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我编写了以下示例代码,它可以很好地从 StackOverflow 中提取问题列表。
I wrote the following sample code and it works great to extract list of questions from StackOverflow.