1

我想在文档中更改节点的内部 html,但不幸的是以下代码不起作用:

HtmlNodeCollection sourceTables = _sourceDoc.DocumentNode.SelectNodes("//table");
sourceTables[0].InnerHtml = "lalala";

节点的内部 html 正确更改,但不影响文档 html

而且这个方法不起作用,因为找不到节点:

_sourceDoc.DocumentNode.ReplaceChild(HtmlNode.CreateNode("<test></test>"), sourceTables[0]);
4

1 回答 1

1

这是库中的一个值得注意的错误 ( http://htmlagilitypack.codeplex.com/workitem/32959 )。它最近已被修复,至少在源代码中(它不在 1.4.6 版本中)。您可以获取最新版本并重新编译。

于 2012-09-25T10:29:54.290 回答