在我的vba代码中需要很少的帮助:
{"x":125,"y":137}
(���{"x":1%
我想从我的情况下的网页中提取一个值(compteur 17),因为使用VBA宏提到了图像。
我已经关注了这个链接(Trying to extract ONE value from a webpage with VBA in Excel)并且它可以正常工作,但是在我的casse中我互相有多个类。
非常感谢
答案 0 :(得分:0)
这可以帮助您开始使用InnerText
案例:
Dim dd As Object
Set dd = IE.Document.getElementsByTagName("tr")
Dim obj As Object
For Each obj In dd
Debug.Print obj.innertext
Next
将上面的代码写在dd = IE.Document.getElementsByClassName(" ")(0).innerText
的地方,并查看网站上所有tr
的内联文字。