C# webbrowser遍历网页元素

时间:2022-03-05 09:02:32
//不引用其他单元
 foreach(HtmlElement ele in WB1.Document.All)
                {
                  if(ele.InnerText=="下一页>")
                  {
                    bl_exist=true;
                    ele.InvokeMember("Click");
                    break;
                  }
                }
//引用mshtml;
IHTMLDocument2 doc = WB1.Document.DomDocument as IHTMLDocument2;
foreach (IHTMLElement ele in doc2.all)
{
if (ele.innerText == "下一页>")
{
bl_exist = true;
ele.click();
break;
}
}