-
C#에서 Javascript 사용하기.개발노하우/others. 2009. 7. 4. 10:40
function closeAction(){
alert("종료");
}
function closeActionAA(aa){ //인자값이 들어갈 자바스크립트.
alert(aa + "호출");
}
이런식의 자바스크립트가 있다면 윈폼에서
this.webBrowser1.Document.InvokeScript("closeAction");
this.webBrowser1.Document.InvokeScript("closeActionAA", new object[]{"텍스트"});
여러개의 인자값을 가지는 자바스크립트의 경우
this.webBrowser1.Document.InvokeScript("closeActionAA", new object[]{"1","2","3","4","5","6"});