什么会导致图像不出现在 webBrowser.domDocument 中?
我总是使用以下代码从 webBrowser 获取一些东西:
IHTMLDocument2 doc = (IHTMLDocument2)browser.Document.DomDocument;
HTMLBody body = (HTMLBody)doc.body;
foreach (IHTMLImgElement img in doc.images)
{
//logic here
}
但是,这一次图像没有显示出来。
什么会导致这种情况发生?