今天写一个程序需要到使用这个.上网查了一晚上的资料, 分享一下自己的代码
共使用了两种种方法实现:
1:使用webbrowser的 links方法
//if (webBrowser1.Document != null)
//{
// int j = webBrowser1.Document.Links.Count;
// for (int i = 0; i < j ; i++)
// {
// webBrowser1.Document.Links[i].InvokeMember("Click");
// }
//}
2: 使用了 HtmlDocument 的方法
HtmlDocument doc = this.webBrowser1.Document;
for (int i = 0; i < doc.All.Count; i++)
{
if (doc.All[i].TagName == "A" || doc.All[i].TagName == "a")
{
HtmlElement elem = doc.All[i];
if (elem.OuterText == "自动收录网站")