我有一个 libxmljs 文档,我想在其中附加 html 片段。例如:
var value = '<div xmlns="http://www.w3.org/1999/xhtml"><p>Soemthing</p></div>';
document.root().node('field', value);
但我想保留 html 结构。因为在生成xml之后,我得到了里面的字段
<field><div xmlns="http://www.w3.org/1999/xhtml"><p>Something</p></div></field>
虽然我想实现
<field><div xmlns="http://www.w3.org/1999/xhtml"><p>Something</p></div></field>
我知道我可以解析 htmlFragment 但之后我无法将它添加到文档中。那么如何添加html片段呢?并保留标签(如果它们存在)?
谢谢!