實(shí)例簡介】
用代碼說話吧,一看就懂的
【實(shí)例截圖】
【核心代碼】
1 2 3 4 5 6 7 8 9 10 11 | this .webBrowser1.DocumentText = @"
<script type='text/javascript'>
function GetValues(){
return new Array(1,2,3,4);
}
</script>
" ;
object values = this .webBrowser1.Document.InvokeScript( "GetValues" , null );
foreach ( object value in (IEnumerable)values)
MessageBox.Show(value.ToString());
|
|