我正在尝试使用 HTMLAgility 解析以下内容:
<span class="button">
<a role="anotherbutton" href="/gofor/15555445554/be?ref=t">Me</a>
</span>
像这样:
foreach (HtmlNode link in doc.DocumentNode.SelectNodes("//span[@class = 'button']/a[@role = 'anotherbutton']"))
{
string att = link.Attributes["href"].Value;
txt_htmlResults.Text += att.ToString() + "\n";
}
但是我总是得到空异常......我的意图是获得15555445554。有人可以帮忙。先感谢您