如何实现
XPathDocument document = new XPathDocument("books.xml");
XPathNavigator navigator = document.CreateNavigator();
XPathNodeIterator nodeset = navigator.Select(xpath);
while (nodeset.MoveNext())
{
// Clone iterator here when working with it.
Do something
}
在 html 敏捷包中?没有太多的文档。我已经通过网络进行了搜索。我拿不到样品。没有 HtmlPathNodeIterator。HtmlNodeNavigator navigator = Html.CreateNavigator() 不起作用。
提前致谢