无论如何通过WebBrowser控件从.NET Compact Framework调用JavaScript函数吗?
答案 0 :(得分:4)
它适用于Navigate()方法。我只是尝试使用Windows Mobile 5.0 Pocket PC模拟器。
例如:
webBrowser1.DocumentText = @"<html><head>
<script type='text/javascript'>
function doIt() {
alert('hello again');
return 'i did it!';
}
</script>
</head><body>hello!</body></html>";
webBrowser1.Navigate(new Uri("javascript:doIt()"));