当我这样做时:
Document document = Jsoup.connect(url).get();
Element element = document.getElementById("body");
Element article = document.select("div[id=article]").first();
如果我尝试查询分配给article
的元素是<body/>
的孩子,那么它会成功查询吗?
或者我是否需要导航到article
的父级,然后在父级上调用select()
方法?
提前致谢。
答案 0 :(得分:2)
为什么不呢?
Element article = document.getElementById("article");