我尝试使用以下代码获取图片中显示的标题和说明数据:
e = rawData.select("div.progress-2.m-animated.progress-category-item");
for(Element el : e){
println(el.text());
}
但似乎有几个其他类使用相同的div.progress-2.m-animated.progress-category-item
类。因为我使用此代码获取其他不必要的数据。
我想要做的是,就像在图像中一样,有快速播放/竞争数据的特定ID。我想从中获取唯一的数据,但我无法弄清楚如何做这些事情。
答案 0 :(得分:0)
如果bar-text
是您可以执行的唯一课程
e = rawData.select("div.progress-2.m-animated.progress-category-item > .bar-text");
但最简单的方法是给你的div一个独特的id