如何点击下面的提交按钮。
<input type="submit" class="btn btn-primary ks-btn" value="提交">这样不行,页面有两个提交按钮,我要点击第二个提交按钮。        For Each a In WebBrowser1.Document.GetElementsByTagName("A")
            If a.innertext = "提交" Then a.InvokeMember("click") : Exit For
        Next