我正在使用带有AngleSharp库的c#来从<a>
读取网址
我可以使用
var items = document.QuerySelectorAll("a");
但我该怎么做才能阅读所有href
代码中<a>
属性的网址?
答案 0 :(得分:0)
试试这个:
var anchors = document.QuerySelectorAll("a").OfType<IHtmlAnchorElement>();
foreach (var a in anchors)
{
Console.WriteLine(a.Text); // prints the link inner text
Console.WriteLine("Href = " + GetAttribute("href")); // prints all the links
}
// if you are using winforms then replace console.writeline with string text