摘要: C# 获取IFrame中body元素 (winform)方法1.找出iframe的b.html的src , 利用webbrowser去加载b.htmlHtmlElementCollection a = webBrowser1.Document.All["loginframe"].GetElementsByTagName("iframe");foreach (HtmlElement kk in a) { textBox1.Text = kk.GetAttribute("src");}或者webBrowser1.Document.GetE 阅读全文
posted @ 2013-08-13 22:37 龍☆ 阅读(801) 评论(0) 推荐(0) 编辑