我想将"<div> </div>"
添加到我的web浏览器页面。
例如,我已经导航到http://google.com
,并且想要在该页面上添加自己的div
,有没有办法做到这一点?
最佳答案
使用WebBrowser
控件:
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
this.Load += Form1_Load;
}
private void Form1_Load(object sender, EventArgs e)
{
this.webBrowser1.Navigate("http://www.google.com");
this.webBrowser1.DocumentCompleted += webBrowser1_DocumentCompleted;
}
void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e)
{
string content = "<div style=\"background:#f00;\"><h1>HACKED</h1></div>";
this.webBrowser1.Document.GetElementById("gb").InnerHtml = content;
}
}