Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有可能使用 goquery 检索文档文档类型?
我已经尝试了几件事,但任何一个都有效。我想这是可能的,因为 NodeName func 具有“html.DoctypeNode”案例的开关。
该代码没有找到文档类型:
doc.Find("~").Each(func(_ int, item *goquery.Selection) { fmt.Println(goquery.NodeName(item)) })
似乎没有一种可靠的方法可以使用 jQuery 本身(在 Web 浏览器中)或后端的goquery来检索文档类型。