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# 桌面应用程序的 WebView 控件中有一个来自外部 URL 的 Web 表单,我想从 Web 表单获取字段值到应用程序。怎么做?
webbrowser 控件公开页面的内容。
因此,您可以浏览 DOM 并找到您需要的字段。
访问 DHTML DOM
我知道链接没有重新发送,但方法或多或少相同。
如果您知道字段的 ID,那么您可以像这样获得它们的值:
string fieldValue = webBrowser1.Document.GetElementById(YOUR_FIELD_ID).GetAttribute("value");
确保在 webview 完成加载之前调用这些方法!