我需要制作一个 VBA 文件来读取网页并返回 IMG 标记的 SRC 属性的值。我无法完成最后一步。你们能帮帮我吗?
<html>
<body>
<img src="image.jpg">
</body>
</html>
===编辑=== 我设法返回了属性对象。现在我需要返回它的值
Option Compare Database
Sub AcessaPagina()
Dim ie As InternetExplorer
Dim test As String
Dim obj As Object
Set ie = New InternetExplorer
ie.Navigate "http://www.google.com.br"
MsgBox ie.Document.getElementsByTagName("img").Item(0).Attributes("src")
ie.Visible = True
End Sub
这就是我目前所拥有的。