웹 브 라 우 저 에 javascript 코드 를 주입 하고 실행 합 니 다.

  :http://outofmemory.cn/code-snippet/1524/WebBrowser-zhuru-execution-javascript-code
//  head  
HtmlElement head = webBrowser1.Document.GetElementsByTagName("head")[0];
//  script  
HtmlElement scriptEl = webBrowser1.Document.CreateElement("script");
IHTMLScriptElement element = (IHTMLScriptElement)scriptEl.DomElement;
// script   js  
element.text = "function sayHello() { alert('hello') }";
// script     head   
head.AppendChild(scriptEl);
//  js  
webBrowser1.Document.InvokeScript("sayHello");

좋은 웹페이지 즐겨찾기