在特定网页上使用 MSXML2.xmlHttp 我可以使用下面的代码 debug.print 所有“SRC”地址,它给我带来了 6 个“src”地址。现在我正在尝试将内嵌到 excel - range(“A3”) 只有第三个“src”地址。你能帮忙的话,我会很高兴。
Dim s As String, obj As Object, resp As String
With CreateObject("HTMLFile")
.write sResp
For Each obj In .body.document.getElementsByTagName("img")
Debug.Print obj.outerHTML
Next
End With