,可以通过以下步骤实现:
Dim IE As Object
Set IE = CreateObject("InternetExplorer.Application")
IE.Visible = True '设置IE窗口可见
IE.Navigate "http://www.example.com" '替换为你要打开的网页地址
Do While IE.Busy Or IE.readyState <> 4
DoEvents
Loop
Dim inputElement As Object
Set inputElement = IE.Document.getElementById("inputId") '替换为你要查找的输入框的id
If Not inputElement Is Nothing Then
MsgBox inputElement.Value
Else
MsgBox "未找到输入框"
End If
IE.Quit
Set IE = Nothing
这样就可以在VBA中查找存储在IE对象中的值了。根据具体的需求,可以使用不同的HTML DOM方法和属性来查找和操作网页中的元素和值。
领取专属 10元无门槛券
手把手带您无忧上云