使用基于Tag的VBA从网页中提取值

时间:2018-04-09 15:02:47

标签: excel vba excel-vba internet-explorer

在我的vba代码中需要很少的帮助:

{"x":125,"y":137}
(���{"x":1% 

我想从我的情况下的网页中提取一个值(compteur 17),因为使用VBA宏提到了图像。

SOurce code

我已经关注了这个链接(Trying to extract ONE value from a webpage with VBA in Excel)并且它可以正常工作,但是在我的casse中我互相有多个类。

非常感谢

1 个答案:

答案 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的内联文字。