■ WebBrowser 클래스에서 자바 스크립트 함수를 호출하는 방법을 보여준다.
▶ 예제 코드 (JAVASCRIPT)
1 2 3 4 5 6 7 8 |
<script> function test(stringA, stringB) { alert(stringA + " " + stringB); } </script> |
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
using System.Windows.Forms; /// <summary> /// 웹 브라우저 /// </summary> private WebBrowser webBrowser = new WebBrowser(); ... if(this,webBrowser.Document != null) { HtmlDocument htmlDocument = this.webBrowser.Document; htmlDocument.InvokeScript("test", new object[] { "파라미터1", "파라미터2" }); } |