1

我有一个存储为字符串的样式表,我正在尝试使用 Html Agility Pack 添加到已解析的 HtmlDocument 中。我无法设置style节点的 InnerText,因为它没有设置器。这样做的最佳方法是什么?

4

1 回答 1

2

未经测试,但应该给你的想法:

// doc is the HtmlDocument
var style = doc.CreateElement("style");
var text = doc.CreateTextNode("some CSS here");
style.AppendChild(text);
doc.DocumentNode.AppendChild(style); // or, AppendChild to any node
于 2012-12-29T16:25:11.287 回答