当前位置:网站首页 > 网站建设教程 > HTML教程 > 正文

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

教程管理员 发布于2023-09-30 22:28 HTML教程 165

简介: 在html中写入内容,并添加js private void btnTestJs_Click(object sender, EventArgs e) { this.

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

        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

        }

琼ICP备09004296号-12