我想在文档中更改节点的内部 html,但不幸的是以下代码不起作用:
HtmlNodeCollection sourceTables = _sourceDoc.DocumentNode.SelectNodes("//table");
sourceTables[0].InnerHtml = "lalala";
节点的内部 html 正确更改,但不影响文档 html。
而且这个方法不起作用,因为找不到节点:
_sourceDoc.DocumentNode.ReplaceChild(HtmlNode.CreateNode("<test></test>"), sourceTables[0]);