0
使用C#,Xaml和HTMLAgilityPack的Im。如何獲得屬性「alt」的值。如何從Html屬性獲取數據
HTML代碼:
<img src="http://userserve-ak.last.fm/serve/252/87168773.png" alt="Idina Menzel - Let It Go lyrics" title="Let It Go"/>
我如何獲得 「伊迪娜門澤爾 - 隨它吧歌詞」。
C#代碼:
var s = doc.DocumentNode.Descendants("img").Where(o => o.Attributes["alt"] != null && o.Attributes["alt"].Value != null);
try
{
foreach (HtmlNode childNode in s)
{
pureText.Append(c + ". ");
pureText.Append(childNode);
pureText.Append("\n\n");
c++;
}
}
catch
{ }