Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有非常简单的 xml
<root> <node>some value</node> </root>
如何使用 libxml 和 C 获取序列化的 HTML 片段。我的意思与您可以outerHTML在 JS ( document.getElementsByTagName("node")[0].outerHTML) 中使用的相同。
outerHTML
document.getElementsByTagName("node")[0].outerHTML
您必须使用xmlNodeDump。或者,如果要将节点打印到文件/标准输出,则使用xmlElemDump