我想使用HtmlAgilityPack遍历文档中的所有节点
将
foreach (HtmlNode node in myhtml.DocumentNode.SelectNodes("//@"))
做? 最佳答案
您可以循环遍历myhtml.DocumentNode.Descendants()
。
关于c# - HtmlAgilityPack-获取文档中的所有节点,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9114867/