关键字this
无效
你能帮助我吗?
static void ThreadFuncEven()
{
Thread.Sleep(20000);
HtmlElementCollection elc2 = this.webBrowser1.Document.GetElementsByTagName("a");
int count = 0;
foreach (HtmlElement el in elc2)
{
if (el.GetAttribute("data-gtm").Equals("like-toggle"))
{
el.InvokeMember("Click");
if (++count >= 50)
{
break;
}
}
}
}
答案 0 :(得分:0)
您尝试在this
方法中使用static
关键字。要么将方法设为instance
方法,要么更改代码。