我有HtmlDocument
可能或可能有<head>
和<body>
部分,或者可能只是一个html片段。无论哪种方式,我想通过一个函数运行它,以确保它具有(更多)正确的html结构。
我知道我可以通过查看
来检查它是否有身体doc.DocumentNode.SelectSingleNode("//body");
为空。如果它没有正文,我如何在<body>
元素中包装doc.DocumentNode的内容并将其分配回HtmlDocument
?
编辑:对于我想要做的事情似乎有些困惑。以jquery术语:
$doc = $(document);
if( !$doc.has('body') ) {
$doc.wrapInner('body');
}
基本上,如果没有body元素,请在所有内容周围放置一个body元素。
答案 0 :(得分:3)
你可以这样做:
HtmlDocument doc = new HtmlDocument();
doc.Load(MyTestHtm);
HtmlNode body = doc.DocumentNode.SelectSingleNode("//body");
if (body == null)
{
HtmlNode html = doc.DocumentNode.SelectSingleNode("//html");
// we presume html exists
body = CloneAsParentNode(html.ChildNodes, "body");
}
static HtmlNode CloneAsParentNode(HtmlNodeCollection nodes, string name)
{
List<HtmlNode> clones = new List<HtmlNode>(nodes);
HtmlNode parent = nodes[0].ParentNode;
// create a new parent with the given name
HtmlNode newParent = nodes[0].OwnerDocument.CreateElement(name);
// insert before the first node in the selection
parent.InsertBefore(newParent, nodes[0]);
// clone all sub nodes
foreach (HtmlNode node in clones)
{
HtmlNode clone = node.CloneNode(true);
newParent.AppendChild(clone);
}
// remove all sub nodes
foreach (HtmlNode node in clones)
{
parent.RemoveChild(node);
}
return newParent;
}