webbrowser在html中写入内容并添加js_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > webbrowser在html中写入内容并添加js

webbrowser在html中写入内容并添加js

 2013/9/10 11:06:45  沧海一滴  博客园  我要评论(0)
  • 摘要:在html中写入内容,并添加jsprivatevoidbtnTestJs_Click(objectsender,EventArgse){this.webBrowser1.Navigate("about:blank");this.webBrowser1.Document.Write("testBody");//makethethis.webBrowser1.Document.BodyisnotnullHtmlElementhe=this
  • 标签:Web 内容 WebBrowser JS

在html中写入内容,并添加js

class="csharpcode">        private void btnTestJs_Click(object sender, EventArgs e)
        {
            this.webBrowser1.Navigate("about:blank");
            this.webBrowser1.Document.Write("testBody");//make the this.webBrowser1.Document.Body is not null             
            HtmlElement he = this.webBrowser1.Document.CreateElement("script");
            he.SetAttribute("type","text/javascript");
            he.SetAttribute("text","alert('test');");
            this.webBrowser1.Document.Body.AppendChild(he);//add element

        }
上一篇: .NET基础:修饰符 下一篇: PHP extract() 函数
发表评论
用户名: 匿名