尝试了所有但未完成的事情。这是代码:
public LocalTimes(City newCity) throws IOException {
setCity(newCity);
setDoc(Jsoup.connect("http://www.turkishairlines.com/tr-tr/ucak-bileti/" + city.getName())
.userAgent("Mozilla/5.0 (Windows NT 6.1; WOW64; rv:19.0) Gecko/20100101 Firefox/19.0")
.header("Content-type", "application/x-www-form-urlencoded")
.method(Connection.Method.GET)
.timeout(5000)
.post());
Element babas = doc.getElementById("div.clock-gmt > span");
}
我需要标签“span”中的值,这是城市的gmt值。因为我认为这是通过javascript执行的,我无法获取text()和值。
请提出任何建议?
答案 0 :(得分:0)
什么价值? span元素为空
<div class="clock">
<div class="clock-day">
Çarşamba
</div>
<div class="jsClock"></div>
<div class="clock-gmt">
GMT <span></span>
</div>
....