赢取webBrowser菜单

时间:2012-04-03 01:14:37

标签: javascript winforms events click browser

我在其顶部创建了一个WebBrowser winform应用程序和菜单条。 我想从winform菜单条

中使用html视图(WebBrowser)中的javascript按钮

这是我的网络应用程序菜单

<a href="javascript:findPatient('ID');"   class="navitem">Patient ID</a>

如何为此href创建点击事件=&#34; javascript:findPatient(&#39; ID&#39;);&#34; 有一段时间我还需要onclick whic在我的网络应用程序中

<input type='checkbox' name='cb_top' onclick='toggleFrame(1)' checked />

如何为此创建点击事件, 请帮帮我,谢谢

1 个答案:

答案 0 :(得分:0)

这是方法论,你似乎是一个足够好的编码器来调整你的情况:

Private Function ClickSubmitButton()

        Dim theButton As HtmlElement

        Try

            ' Link the ID from the web form to the Button var
            theButton = webbrowser1.Document.GetElementById("loginbutton")

            ' Now do the actual click.
            theButton.InvokeMember("click")
            Return True

        Catch ex As Exception

            Return False

        End Try

    End Function