我有一个样式表存储为一个字符串,我正在尝试使用Html Agility Pack添加到已解析的HtmlDocument。我无法设置style
节点的InnerText,因为它没有setter。这样做的最佳方式是什么?
答案 0 :(得分:1)
未经测试,但应该给你一个想法:
// 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