gpt4 book ai didi

javascript - 使用 VBA 在网络上使用下载按钮

转载 作者:行者123 更新时间:2023-12-03 07:47:30 27 4
gpt4 key购买 nike

        <div id="CSV"
<li style="width: 100%; float: left; clear: left;">
<input onclick="go('CSV')" type="button"
value="Download in CSV Format" />
</li>
</div>

尝试使用onclick函数下载文件。我尝试了以下代码,它执行但不下载文件。

Set x = ie.document.getElementById("CSV")
x.Click

x.onclick 也会给出错误,并且 x.FireEvent“onclick” 也不起作用。请帮忙。

最佳答案

Set div = ie.document.getElementsByTagName("input")
'loop through all the elements
For Each x In div
' check if the value matches the required value, if it does then use the .click function.
If Trim(x.Value) = "Download in CSV Format" Then
x.Click
Exit For
End If
Next

关于javascript - 使用 VBA 在网络上使用下载按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35140964/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com