C# 在 htmldocument 中插入

本文关键字:input 插入 htmldocument | 更新日期: 2023-09-27 17:56:04

如何在Systems.Windows.Forms.HtmlDocument中插入<input type="text" ...>

C# 在 htmldocument 中插入<input>

您可以使用 htmlelement 创建输入类型标记

HtmlElement input = doc.CreateElement("input");

参考这个http://msdn.microsoft.com/en-us/library/system.windows.forms.htmldocument.aspx

http://msdn.microsoft.com/en-us/library/system.windows.forms.webbrowser.document.aspx#Y300举了一个关于如何做到这一点的例子,但这在一段时间后将成为维护的噩梦。

可能更愿意使用可以在此处找到的createElement - 方法http://msdn.microsoft.com/en-us/library/system.windows.forms.htmldocument.aspx