HTML源代碼如下所示獲得通過LINQ
<img id="itemImage" src="https://www.xyz.com/item1.jpg">
我使用下面的LINQ查詢來獲取SRC值(圖片鏈接)
string imageURL = document.DocumentNode.Descendants("img")
.Where(node => node.Attributes["id"] != null && node.Attributes["id"].Value == "itemImage")
.Select(node => node.Attributes["src"].Value).ToString();
但IMAGEURL給輸出
System.Linq.Enumerable+WhereSelectEnumerableIterator`2[HtmlAgilityPack.HtmlNode,System.String]