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.
我尝试使用 HtmlAgilityPack,但 WinRT 不完全支持它,
" DocumentElement.SelectNodes" 在 WinRT 上不起作用
DocumentElement.SelectNodes
如何从 HTML 页面(或 HTML 字符串)获取图像链接(src)?
“ DocumentElement.SelectNodes ”在 WinRT 上不起作用
然后使用Linq。这是我唯一能做的盲目
var imgLinks = doc.DocumentNode.Descendants("img") .Select(img => img.Attributes["src"].Value) .ToList();