我使用默认的.net WebBrowser创建了一个HTMLElement选择器(DOM)。 用户可以通过单击选择(选择)HTMLElement。
我想获得与HTMLElement对应的HtmlAgilityPack.HTMLNode。
最简单的方法(在我看来)是使用doc.DocumentNode.SelectSingleNode(EXACTHTMLTEXT),但它确实不起作用(因为该函数只接受xpath代码)。
我该怎么做?
用户选择的样本HTMLElement如下所示(The OuterHtml Code):
<a onmousedown="return wow" class="l" href="http://site.com"><em>Great!!!</em> <b>come and see more</b></a>
当然,可以选择任何元素,这就是我需要一种获取HTMLNode的方法。
答案 0 :(得分:1)
我想出了一个解决方案。不知道它是否是最好的(如果有人知道更好的方法让我知道,我会很感激。)
以下是获取HTMLNode的类:
public HtmlNode GetNode(string text)
{
if (text.StartsWith("<")) //get the type of the element (a, p, div etc..)
{
string type = "";
for (int i = 1; i < text.Length; i++)
{
if (text[i] == ' ')
{
type = text.Substring(1, i - 1);
break;
}
}
try //check to see if there are any nodes of your HTMLElement type that have an OuterHtml equal to the HtmlElement Outer HTML. If a node exist, than that's the node we want to use
{
HtmlNode n = doc.DocumentNode.SelectNodes("//" + type).Where(x => x.OuterHtml == text).First();
return n;
}
catch (Exception)
{
throw new Exception("Cannot find the HTML element in the HTML Page");
}
}
else
{
throw new Exception("Invalid HTML Element supplied. The selected HTML element must start with <");
}
}
这个想法是你传递了HtmlElement的OuterHtml。例如:
HtmlElement el=....
HtmlNode N = GetNode(el.OuterHtml);
答案 1 :(得分:1)
相同的概念,但有点简单,因为您不必知道元素类型:
HtmlNode n = doc.DocumentNode.Descendants().Where(n => n.OuterHtml.Equals(text, StringComparison.InvariantCultureIgnoreCase)).FirstOrDefault();