0
我想解析一個網站的標籤<a href=""></a>
。我正在嘗試獲取每個這樣的'description'span類中存在的href屬性值。網站解析c# - Html敏捷包
我嘗試下面的代碼
HtmlNodeCollection sp = htmlDocument.DocumentNode.SelectNodes("//span[@class='description']//a");
foreach (HtmlNode link in sp)
{
HtmlAttribute att = link.Attributes["href"];
System.Diagnostics.Debug.WriteLine(att.Value);
}
我不能夠得到href屬性值。我的錯誤是什麼?
有什麼理由不與該代碼的工作? –
XPath看起來不錯,它應該給你'href'值。你得到什麼錯誤? – Hassan