Questions tagged «html-agility-pack»


5
HTML Agility Pack按类别获取所有元素
我在html敏捷包中遇到了麻烦,无法找到正确的方法来解决这个问题。 例如: var findclasses = _doc.DocumentNode.Descendants("div").Where(d => d.Attributes.Contains("class")); 但是,显然您可以将类添加到比divs更多的类,所以我尝试了这一点。 var allLinksWithDivAndClass = _doc.DocumentNode.SelectNodes("//*[@class=\"float\"]"); 但这不能解决您添加多个类并且“ float”只是这样的情况之一的情况。 class="className float anotherclassName" 有没有办法处理所有这些?我基本上想选择所有具有class =且包含float的节点。 **答案已记录在我的博客上,并在以下位置提供了完整的解释:Html Agility Pack按类别获取所有元素

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.