我们如何根据下面的示例获取锚文本的值?这是我的代码。href我可以获得和title使用的价值html.ElementNode。我需要仅使用 text 来获取文本的值golang.org/x/net/html,而无需使用其他库。
示例:从<a href="https:xyz.com">Text XYZ</a>,我想获得“文本 XYZ”。
// html.ElementNode works for getting href and title value but no text value with TextNode.
if n.Type == html.TextNode && n.Data == "a" {
for _, a := range n.Attr {
if a.Key == "href" {
text = a.Val
}
}
}
qq_花开花谢_0
相关分类