Javascript IE自动点击按钮VBA

Javascript IE自动点击按钮VBA,javascript,excel,vba,automation,Javascript,Excel,Vba,Automation,我无法从我的HTML代码中访问submit按钮,我尝试了一些代码,但这些都不起作用。希望你们能从下面的信息中找到解决方案 我的代码: Sub GetIE() Dim shellWins As ShellWindows Dim IE As InternetExplorer Set shellWins = New ShellWindows Set IE = shellWins.Item(0) IE.document.all("linerepricedamount").Value = "Valu

我无法从我的HTML代码中访问submit按钮,我尝试了一些代码,但这些都不起作用。希望你们能从下面的信息中找到解决方案

我的代码:

Sub GetIE()

Dim shellWins As ShellWindows
Dim IE As InternetExplorer

Set shellWins = New ShellWindows
Set IE = shellWins.Item(0)

IE.document.all("linerepricedamount").Value = "Value"
IE.document.all("linestatus").Value = "value"

'In Next step i want to click a submit button
'I Tried everything but those codes are not working

Set IE = Nothing
Set shellWins = Nothing

End Sub
HTML代码:

<TD> <Input id="button" Type="Button" Value= "SaveLine" Name= "Button"
onclick="JavaScript:return save_line_onclick("saveline.d")> </TD>`

您需要触发onclick事件

Dim btnObject as Object

Set btnObject = IE.document.getElementbyID("button")
    btnObject.FireEvent("onclick")
希望这能解决你的问题