码迷,mamicode.com
首页 > Windows程序 > 详细

C# webbrowser遍历网页元素

时间:2014-10-10 22:39:54      阅读:290      评论:0      收藏:0      [点我收藏+]

标签:style   color   os   ar   for   sp   on   html   ad   

//不引用其他单元
 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;
                    }
                }

C# webbrowser遍历网页元素

标签:style   color   os   ar   for   sp   on   html   ad   

原文地址:http://blog.csdn.net/xtfnpgy/article/details/39968897

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!