运行没有结果的Click事件

时间:2016-11-08 16:41:28

标签: html vba onclick click

有人可以向我解释为什么当我点击以下元素时,表单不会被发送。该元素已被识别,但没有结果。 这是我有兴趣解决的代码的一部分,到目前为止一切正常。

Set IEDoc = Internet.document

Set collection = IEDoc.getElementsByTagName("input") ' there are actually 9 elements

For Each Element In collection
    If Element.Type = "image" Then ' there is only the element of interest in here
        Element.Click


        End If
Next

以下是网页上的HTML代码示例:

html code

1 个答案:

答案 0 :(得分:0)

以下是来自页面的更大比例的HTML代码,我们可以在其中看到包含提交信息按钮的表单。html code bigger scale

user interface of the webpage