我需要制作一个将读成网页的VBA文件,并回去IMG tag的SRC属性的价值。 我无法完成最后一步的工作。 你们能够帮助我吗?
<html>
<body>
<img src="image.jpg">
</body>
</html>
===Edit=== I managed to return the attribute object. Now I need to return its value
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
这符合我目前的情况。