问问题
657 次
1 回答
1
看起来你在追求一个特定的DIV
如果我没有弄错你所追求的那个有一个唯一标识符的话<td class="queueNo"><center><div id="divRegPtwVal">0</div></center></td>
的。
为什么不简单地使用doc.DocumentNode.SelectSingleNode("//div[@id='divRegPtwVal']")
或doc.DocumentNode.Descendants("div").Where(div => div.Id == "divRegPtwVal").FirstOrDefault()
为具有 id 的特定图像选择图像源:
var attrib = doc.DocumentNode.SelectSingleNode("//img[@id='imgCam2']/@src");
//I suspect, might be a slightly different property, I can't check right now
string src = attrib.InnerText;
或者:
var img = doc.DocumentNode.Descendants("img").Where(img => img.Id=="imgCam2");
string src = img.Attributes["Source"].Value;
于 2013-07-12T09:04:41.507 回答