Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 C# 将 WebBrowser 表单中的字符串读入另一个表单?
您可以使用 DOM。例如,如果您的 WebBrowser 显示带有以下标记的页面:
<div id="t"> .... </div>
你可以像在 JavaScript 中那样接收它的文本:
webBrowser.Document.GetElementById("t").InnerText