JSoup的select()方法是上下文吗?

时间:2013-03-15 21:19:08

标签: java jsoup

当我这样做时:

Document document = Jsoup.connect(url).get();
Element element = document.getElementById("body");
Element article = document.select("div[id=article]").first();

如果我尝试查询分配给article的元素是<body/>的孩子,那么它会成功查询吗?

或者我是否需要导航到article的父级,然后在父级上调用select()方法?

提前致谢。

1 个答案:

答案 0 :(得分:2)

为什么不呢?

 Element article = document.getElementById("article");