如何获取C#中WebBrowser 页面标签class值?

2024-10-29 22:56:49
推荐回答(1个)
回答(1):

这个我不知道你代码怎么写的,正常是可以获取到的
foreach (HtmlElement he in webBrowser1.Document.GetElementsByTagName("A"))
{
string a = he.GetAttribute("className");

if (a == "btn")
{
a = he.InnerHtml;
MessageBox.Show(a);
}

}
要指定获取tagName的类型,我这个就可以取到