我在winform app C#FW4.0中使用webBrowser控件,我想找到其class属性包含某些值的所有元素。有可能吗?
答案 0 :(得分:1)
你可以这样做,但这需要你自己做一些工作。
An example on how to find all a
tags with class show1
应该可以帮助您找到所需内容。 以下是
var links = webBrowser1.Document.GetElementsByTagName("a");
foreach (HtmlElement link in links)
{
if (link.GetAttribute("class") == "show1")
{
//do something
}
}