111,094
社区成员




private void GetImagesSrc()
{
HtmlElement htmlEle = webBrowser1.Document.GetElementById("list-itemList");
HtmlElementCollection htmlCollection = htmlEle.GetElementsByTagName("img");
foreach (HtmlElement var in htmlCollection)
{
richTextBox1.AppendText(var.GetAttribute("src") + "\r\n");
}
}