获取<span> </span>中的链接

时间:2013-09-30 17:11:16

标签: html-agility-pack

我得到“跨文本”这段代码,但我想得到链接href(不是链接文本)。 请帮帮我。

   Dim html As String = "<span class=myclass><a href=abc.html>text text a text</a></span>"
   Dim doc = New HtmlAgilityPack.HtmlDocument()
   doc.LoadHtml(html)
   Dim titles As HtmlAgilityPack.HtmlNodeCollection = doc.DocumentNode.SelectNodes("//span[@class='myclass']")
   For Each title In titles
      MsgBox(title.InnerText)
   Next

1 个答案:

答案 0 :(得分:2)

您正在询问如何获取_attribute的值:

title.Attributes("href").Value