2014-07-21 71 views
0

我想解析一個網站的標籤<a href=""></a>。我正在嘗試獲取每個這樣的'description'span類中存在的href屬性值。網站解析c# - Html敏捷包

enter image description here

我嘗試下面的代碼

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屬性值。我的錯誤是什麼?

+1

有什麼理由不與該代碼的工作? –

+0

XPath看起來不錯,它應該給你'href'值。你得到什麼錯誤? – Hassan

回答

2

enter image description here 您可以使用Chrome開發者工具(F12),它可以幫你輕鬆搞定正確的XPath語法(複製XPath)