我需要让一个程序在网络浏览器中为我点击一个 javascript 按钮。这有可能吗?我想在 C# 中完成这个
按钮
INPUT id=str class=text style="TEXT-ALIGN: center" maxLength=4 size=3 value=558 INPUT onclick=doIt_new(1); id=strBtn type=button value=doIt
是的,它是 Visual Studio 中的默认 webbrowser 对象
我需要让一个程序在网络浏览器中为我点击一个 javascript 按钮。这有可能吗?我想在 C# 中完成这个
按钮
INPUT id=str class=text style="TEXT-ALIGN: center" maxLength=4 size=3 value=558 INPUT onclick=doIt_new(1); id=strBtn type=button value=doIt
是的,它是 Visual Studio 中的默认 webbrowser 对象
如果您使用的是 WinForm WebBrowser 控件 - 请查看webBrowser.Document.InvokeScript方法。它允许在托管在 WebBroswer 控件中的文档内执行 JavaScript。
string html =
@"<html>
<script>
function doIt_new(x){
alert(x);
}
</script>
</html>";
webBrowser1.DocumentText = html;
webBrowser1.DocumentCompleted += (s, e) =>
{
webBrowser1.Document.InvokeScript("doIt_new", new object[] { 1 });
};